18 lines
507 B
Nix
18 lines
507 B
Nix
{ pkgs, ... }: {
|
|
systemd.user.services.swww-daemon = {
|
|
Unit = {
|
|
Description = "Solution for Wayland Wallpaper Woes";
|
|
Documentation = "https://github.com/LGFae/swww";
|
|
PartOf = [ "graphical-session.target" ];
|
|
After = [ "graphical-session-pre.target" ];
|
|
};
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
Service = {
|
|
ExecStart = "${pkgs.swww}/bin/swww-daemon --no-cache";
|
|
Restart = "on-failure";
|
|
KillMode = "mixed";
|
|
};
|
|
};
|
|
}
|