configuration.nix/home/wm/addon/swww.nix

19 lines
507 B
Nix
Raw Normal View History

2024-04-21 22:46:14 +05:30
{ 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" ];
};
2024-04-21 22:46:14 +05:30
Service = {
2024-05-18 10:24:45 +05:30
ExecStart = "${pkgs.swww}/bin/swww-daemon --no-cache";
2024-04-21 22:46:14 +05:30
Restart = "on-failure";
KillMode = "mixed";
};
};
}