nixos/home/scripts/batlvl.nix

15 lines
207 B
Nix
Raw Normal View History

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