mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 10:39:42 +00:00
16 lines
223 B
Nix
16 lines
223 B
Nix
{pkgs, ...}:
|
|
pkgs.writeShellApplication {
|
|
name = "toggle-notifications";
|
|
runtimeInputs = with pkgs; [
|
|
coreutils
|
|
libnotify
|
|
dunst
|
|
];
|
|
text = ''
|
|
${builtins.readFile ./toggle-notifications.sh}
|
|
'';
|
|
}
|
|
|
|
|
|
|