Files
nixos/home/scripts/lockhelper.nix
2024-07-17 22:22:04 +02:00

15 lines
242 B
Nix

{ pkgs, ... }:
let
lockhelper = pkgs.writeShellApplication {
name = "lockhelper";
runtimeInputs = with pkgs; [
grim
jq
];
text = (builtins.readFile ./lockhelper.sh);
};
in
{
home.packages = [ lockhelper ];
}