nixos/home/scripts/batlvl.nix
2024-04-21 11:46:33 +02:00

15 lines
207 B
Nix

{ config, pkgs, ... }:
let
batlvl = pkgs.writeShellApplication {
name = "batlvl";
runtimeInputs = [
];
text = builtins.readFile ./batlvl.sh;
};
in
{
home.packages = [
batlvl
];
}