fix(home/swaybg): Re-enable; stylix does not set niri bg
This commit is contained in:
parent
04687653a5
commit
7b4bdca7e7
2 changed files with 3 additions and 9 deletions
|
@ -6,14 +6,7 @@
|
|||
}: let
|
||||
cfg = config.marleyos.services.swaybg;
|
||||
in {
|
||||
options.marleyos.services.swaybg = {
|
||||
enable = lib.mkEnableOption "swaybg";
|
||||
|
||||
wallpaper = lib.mkOption {
|
||||
type = lib.types.path;
|
||||
description = "Path to the wallpaper to use.";
|
||||
};
|
||||
};
|
||||
options.marleyos.services.swaybg.enable = lib.mkEnableOption "swaybg";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
|
@ -34,7 +27,7 @@ in {
|
|||
|
||||
Service = {
|
||||
Type = "exec";
|
||||
ExecStart = "${lib.getExe pkgs.swaybg} -i ${cfg.wallpaper}";
|
||||
ExecStart = "${lib.getExe pkgs.swaybg} -i ${config.stylix.image}";
|
||||
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
|
||||
KillMode = "mixed";
|
||||
Restart = "on-failure";
|
||||
|
|
|
@ -25,6 +25,7 @@ in {
|
|||
fuzzel.enable = true;
|
||||
};
|
||||
services = {
|
||||
swaybg.enable = true;
|
||||
swaync.enable = true;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue