13 lines
306 B
Nix
13 lines
306 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|