{ pkgs, ... }: { home.packages = with pkgs; [ swww ]; systemd.user.services.swww-daemon = { Unit = { Description = "SWWW Daemon"; Wants = [ "graphical-session.target" ]; After = [ "graphical-session.target" ]; }; Service.ExecStart = "${pkgs.swww}/bin/swww-daemon"; }; }