feat: change notification daemon
use sway notification center (much more modern)
This commit is contained in:
parent
b60c28d972
commit
b6d7635ce0
3 changed files with 20 additions and 1 deletions
|
@ -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
|
||||||
|
|
9
home-manager/stvnliu/services/default.nix
Normal file
9
home-manager/stvnliu/services/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
./swaync.nix
|
||||||
|
];
|
||||||
|
}
|
9
home-manager/stvnliu/services/swaync.nix
Normal file
9
home-manager/stvnliu/services/swaync.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
services.swaync = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue