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

13 lines
220 B
Nix
Raw Normal View History

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