marleyos/modules/home/services/swaybg/default.nix

41 lines
962 B
Nix
Raw Normal View History

2025-03-01 02:45:55 +00:00
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.services.swaybg;
in {
options.marleyos.services.swaybg.enable = lib.mkEnableOption "swaybg";
2025-03-01 02:45:55 +00:00
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
swaybg
];
systemd.user.services.swaybg = {
Install = {
WantedBy = ["xdg-desktop-autostart.target"];
2025-03-01 02:45:55 +00:00
};
Unit = {
Description = "Wallpaper tool for Wayland compositors";
Documentation = ["man:swaybg(1)"];
After = ["graphical-session.target"];
PartOf = ["xdg-desktop-autostart.target"];
2025-03-01 02:45:55 +00:00
};
Service = {
Type = "exec";
ExecStart = "${lib.getExe pkgs.swaybg} -i ${config.stylix.image}";
2025-03-01 02:45:55 +00:00
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
KillMode = "mixed";
Restart = "on-failure";
RestartSec = "1s";
RestartMaxDelaySec = "30s";
RestartSteps = 10;
2025-03-01 02:45:55 +00:00
};
};
};
}