nix-config/home/hyprland/hyprpaper.nix

25 lines
434 B
Nix
Raw Normal View History

2025-03-27 12:54:14 +01:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
hyprpaper
];
home.file = {
"Pictures/Wallpapers" = {
source = ./wallpapers;
recursive = true;
};
};
# Hyprpaper configuration
services.hyprpaper.enable = true;
services.hyprpaper.settings = {
2025-03-27 13:11:56 +01:00
preload = "Pictures/Wallpapers/girl.png";
2025-03-27 13:39:58 +01:00
wallpaper = ", Pictures/Wallpapers/girl.png";
2025-03-27 12:54:14 +01:00
};
}