mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-25 04:49:02 +00:00
14 lines
228 B
Nix
14 lines
228 B
Nix
{pkgs, ...}:
|
|
pkgs.writeShellApplication {
|
|
name = "toggle-idle";
|
|
runtimeInputs = with pkgs; [
|
|
coreutils
|
|
gnugrep
|
|
procps
|
|
libnotify
|
|
hypridle
|
|
];
|
|
text = ''
|
|
${builtins.readFile ./toggle-idle.sh}
|
|
'';
|
|
}
|