From 0fb41b80416f4a7b0b7632ef34b45e9bea6bf09d Mon Sep 17 00:00:00 2001 From: Tomas Rivera <137088692+Totorile1@users.noreply.github.com> Date: Thu, 26 Feb 2026 18:14:48 +0100 Subject: [PATCH] added swaync --- hosts/laptop/home.nix | 2 +- modules/home-manager/swaync.nix | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 modules/home-manager/swaync.nix 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; + }; +}