2024-10-02 17:59:58 +00:00
|
|
|
# stolen from https://raw.githubusercontent.com/carlsvelz/dotfiles/a7a109b2e19f73062b4961e7be75836e6d13408c/home/wayland/swaybg.nix
|
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
nixosConfig,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
systemd.user.services.swaybg = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Wayland wallpaper daemon";
|
|
|
|
PartOf = ["graphical-session.target"];
|
|
|
|
};
|
|
|
|
Service = {
|
2024-10-06 15:48:46 +00:00
|
|
|
ExecStart = "${lib.getExe pkgs.swaybg} -i ${nixosConfig.style.wallpaper} -m fill";
|
2024-10-02 17:59:58 +00:00
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
|
|
|
Install.WantedBy = ["graphical-session.target"];
|
|
|
|
};
|
|
|
|
}
|