configuration.nix/home/wm/addon/swww.nix
2024-05-18 10:24:45 +05:30

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