nixdots/home/programs/graphical/wms/hyprland/packages/toggle-idle/default.nix
2024-06-22 06:56:38 +02:00

15 lines
228 B
Nix

{pkgs, ...}:
pkgs.writeShellApplication {
name = "toggle-idle";
runtimeInputs = with pkgs; [
coreutils
gnugrep
procps
libnotify
hypridle
];
text = ''
${builtins.readFile ./toggle-idle.sh}
'';
}