25 lines
441 B
Nix
25 lines
441 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
home.packages = [
|
|
pkgs.swww
|
|
];
|
|
|
|
systemd.user.services.swww = {
|
|
Unit = {
|
|
Description = "swww wallpaper daemon";
|
|
After = [ "graphical-session.target" ];
|
|
Partof = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "${pkgs.swww}/bin/swww-daemon";
|
|
Restart = "on-failure";
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
}
|