fix(home/swaybg): Re-enable; stylix does not set niri bg

This commit is contained in:
punkfairie 2025-03-02 12:10:28 -08:00
parent 04687653a5
commit 7b4bdca7e7
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 3 additions and 9 deletions

View file

@ -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";

View file

@ -25,6 +25,7 @@ in {
fuzzel.enable = true;
};
services = {
swaybg.enable = true;
swaync.enable = true;
};
};