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

16 lines
223 B
Nix

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