This commit is contained in:
2026-01-02 20:43:09 +01:00
commit 96a1f8a395
124 changed files with 2833 additions and 0 deletions

24
home/swww.nix Normal file
View File

@@ -0,0 +1,24 @@
{ 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" ];
};
};
}