added swaync

This commit is contained in:
Tomas Rivera
2026-02-26 18:14:48 +01:00
parent ae3d890e87
commit 0fb41b8041
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ imports = [
../../modules/home-manager/hyprland.nix ../../modules/home-manager/hyprland.nix
../../modules/home-manager/wlogout.nix # logout utility ../../modules/home-manager/wlogout.nix # logout utility
../../modules/home-manager/rofi.nix # launcher and keybindings helper ../../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
]; ];
+7
View File
@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
programs.swaync = {
enable = true;
};
}