nix-config/home/hyprland/hyprpaper.nix

25 lines
440 B
Nix
Raw Permalink Normal View History

2025-03-27 12:54:14 +01:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
hyprpaper
];
home.file = {
"Pictures/Wallpapers" = {
2025-04-01 02:34:17 +02:00
source = ../../wallpapers;
2025-03-27 12:54:14 +01:00
recursive = true;
};
};
# Hyprpaper configuration
services.hyprpaper.enable = true;
services.hyprpaper.settings = {
2025-04-07 23:13:13 +02:00
preload = "Pictures/Wallpapers/tokio.png";
wallpaper = ", Pictures/Wallpapers/tokio.png";
2025-03-27 12:54:14 +01:00
};
}