diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-17 00:52:03 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-17 00:52:03 +0200 |
commit | b6d7635ce0d4821addf7463a7d7b01a2b18f1973 (patch) | |
tree | cef5503c2e7c0e8fc9031424a82642477b615c0c | |
parent | b60c28d9721001b4fd563de593095384c2fa1f42 (diff) | |
download | nixos-configuration-b6d7635ce0d4821addf7463a7d7b01a2b18f1973.tar.gz nixos-configuration-b6d7635ce0d4821addf7463a7d7b01a2b18f1973.tar.bz2 nixos-configuration-b6d7635ce0d4821addf7463a7d7b01a2b18f1973.zip |
feat: change notification daemon
use sway notification center (much more modern)
-rw-r--r-- | home-manager/stvnliu/home.nix | 3 | ||||
-rw-r--r-- | home-manager/stvnliu/services/default.nix | 9 | ||||
-rw-r--r-- | home-manager/stvnliu/services/swaync.nix | 9 |
3 files changed, 20 insertions, 1 deletions
diff --git a/home-manager/stvnliu/home.nix b/home-manager/stvnliu/home.nix index 3fe5b53..aef2927 100644 --- a/home-manager/stvnliu/home.nix +++ b/home-manager/stvnliu/home.nix @@ -9,7 +9,8 @@ ./hypr ./shells ../../common/variables.nix - ./mako.nix + ./services + #./mako.nix DEPRECATED Changed to sway notification center ./wechat ./editors.nix ./gtk.nix diff --git a/home-manager/stvnliu/services/default.nix b/home-manager/stvnliu/services/default.nix new file mode 100644 index 0000000..c7801d9 --- /dev/null +++ b/home-manager/stvnliu/services/default.nix @@ -0,0 +1,9 @@ +{ + pkgs, + config, + ... +}: { + imports = [ + ./swaync.nix + ]; +} diff --git a/home-manager/stvnliu/services/swaync.nix b/home-manager/stvnliu/services/swaync.nix new file mode 100644 index 0000000..2a5d5bc --- /dev/null +++ b/home-manager/stvnliu/services/swaync.nix @@ -0,0 +1,9 @@ +{ + pkgs, + config, + ... +}: { + services.swaync = { + enable = true; + }; +} |