diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index bfcbbbd..b73a29e 100755 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -14,7 +14,7 @@ imports = [ ../../modules/home-manager/hyprland.nix ../../modules/home-manager/wlogout.nix # logout utility ../../modules/home-manager/rofi.nix # launcher and keybindings helper -../../modules/home-manager/batsignal.nix # notify daemon for battery +../../modules/home-manager/swaync.nix # notification daemon ]; diff --git a/modules/home-manager/swaync.nix b/modules/home-manager/swaync.nix new file mode 100644 index 0000000..39d7af7 --- /dev/null +++ b/modules/home-manager/swaync.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: + +{ + programs.swaync = { + enable = true; + }; +}