feat: swaync
This commit is contained in:
parent
b18d5e4d9d
commit
334d3ae658
5 changed files with 12 additions and 6 deletions
|
@ -9,6 +9,7 @@
|
|||
./system
|
||||
./shell
|
||||
./programs
|
||||
./services
|
||||
|
||||
./profiles.nix
|
||||
];
|
||||
|
|
|
@ -16,7 +16,7 @@ in {
|
|||
|
||||
config = lib.mkIf (cfg.enable && pkgs.stdenv.isLinux) {
|
||||
marleyos = {
|
||||
# services.swaync.enable = true;
|
||||
services.swaync.enable = true;
|
||||
# TODO: enable once swaylock is figured out
|
||||
# programs.wlogout.enable = true;
|
||||
};
|
||||
|
|
5
modules/home/services/default.nix
Normal file
5
modules/home/services/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./swaync.nix
|
||||
];
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.marleyos.services.swaync;
|
|
@ -31,10 +31,10 @@ in {
|
|||
# fuzzel = enabled;
|
||||
# xwayland-satellite = enabled;
|
||||
};
|
||||
# services = {
|
||||
# swaybg = enabled;
|
||||
# swaync = enabled;
|
||||
# };
|
||||
services = {
|
||||
# swaybg = enabled;
|
||||
swaync = enabled;
|
||||
};
|
||||
};
|
||||
|
||||
programs.niri = {
|
||||
|
|
Loading…
Reference in a new issue