nixos/home/scripts/lockhelper.nix
Torjus Håkestad 8d419de159
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m47s
Periodic flake update / flake-update (push) Successful in 2m10s
Rework lockhelper for gunter
2025-06-10 19:21:22 +02:00

22 lines
268 B
Nix

{
writeShellApplication,
grim,
jq,
gawk,
hyprland,
hyprlock,
procps,
}:
writeShellApplication {
name = "lockhelper";
runtimeInputs = [
grim
jq
gawk
hyprland
hyprlock
procps
];
text = (builtins.readFile ./lockhelper.sh);
}