wallpaper.nix
1 { config, lib, pkgs, ... }: { 2 home.file.".overview-background-image".source = ./overview-background-image; 3 home.file.".background-image".source = ./background-image; 4 home.file.".background-image-still".source = ./background-image-still; 5 6 home.packages = [ pkgs.swaybg pkgs.swww pkgs.hyprpaper ]; 7 services.swww.enable = true; 8 home.file.".config/hyprpaper/hyprpaper.conf" = { source = ./hyprpaper.conf; }; 9 }