nixos/home/scripts/batlvl.nix

12 lines
197 B
Nix
Raw Normal View History

2024-04-21 09:46:33 +00:00
{ config, pkgs, ... }:
let
batlvl = pkgs.writeShellApplication {
name = "batlvl";
2024-07-17 20:22:04 +00:00
runtimeInputs = [ ];
2024-04-21 09:46:33 +00:00
text = builtins.readFile ./batlvl.sh;
};
in
{
2024-07-17 20:22:04 +00:00
home.packages = [ batlvl ];
2024-04-21 09:46:33 +00:00
}