nixos/home/scripts/lockhelper.nix

15 lines
242 B
Nix
Raw Normal View History

2024-06-10 00:26:51 +00:00
{ pkgs, ... }:
let
lockhelper = pkgs.writeShellApplication {
name = "lockhelper";
runtimeInputs = with pkgs; [
2024-06-10 22:53:59 +00:00
grim
jq
2024-06-10 00:26:51 +00:00
];
text = (builtins.readFile ./lockhelper.sh);
};
in
{
2024-07-17 20:22:04 +00:00
home.packages = [ lockhelper ];
2024-06-10 00:26:51 +00:00
}