{ pkgs, ... }:
{
  systemd.user.services.swww = {
    Install.WantedBy = [ "graphical-session.target" ];

    Unit = {
      After = [ "graphical-session-pre.target" ];
      PartOf = [ "graphical-session.target" ];
    };
    Service = {
      Type = "simple";
      ExecStart = "${pkgs.swww}/bin/swww-daemon";
      Restart = "on-failure";
    };
  };
}