nix-config/home/hyprland/hyprpaper.nix
2025-04-04 12:50:32 +02:00

25 lines
450 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
hyprpaper
];
home.file = {
"Pictures/Wallpapers" = {
source = ../../wallpapers;
recursive = true;
};
};
# Hyprpaper configuration
services.hyprpaper.enable = true;
services.hyprpaper.settings = {
preload = "Pictures/Wallpapers/girl_nixos.png";
wallpaper = ", Pictures/Wallpapers/girl_nixos.png";
};
}