feat: change notification daemon

use sway notification center (much more modern)
This commit is contained in:
Zhongheng Liu 2024-12-17 00:52:03 +02:00
commit b6d7635ce0
Signed by: steven
GPG key ID: 805A28B071DAD84B
3 changed files with 20 additions and 1 deletions

View file

@ -9,7 +9,8 @@
./hypr ./hypr
./shells ./shells
../../common/variables.nix ../../common/variables.nix
./mako.nix ./services
#./mako.nix DEPRECATED Changed to sway notification center
./wechat ./wechat
./editors.nix ./editors.nix
./gtk.nix ./gtk.nix

View file

@ -0,0 +1,9 @@
{
pkgs,
config,
...
}: {
imports = [
./swaync.nix
];
}

View file

@ -0,0 +1,9 @@
{
pkgs,
config,
...
}: {
services.swaync = {
enable = true;
};
}