nixdots/home/programs/graphical/wms/hyprland/packages/toggle-idle/default.nix

15 lines
228 B
Nix
Raw Normal View History

2024-06-22 04:56:38 +00:00
{pkgs, ...}:
pkgs.writeShellApplication {
name = "toggle-idle";
runtimeInputs = with pkgs; [
coreutils
gnugrep
procps
libnotify
hypridle
];
text = ''
${builtins.readFile ./toggle-idle.sh}
'';
}