Evie Litherland-Smith
e0dea93832
Change wallpaper to the Citadel, use an animated version on Vanguard only Drop nix-ts-mode for Emacs (use regular nix-mode)
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";
|
|
};
|
|
}
|