nix-config/home/hyprland/hyprpaper.nix

23 lines
389 B
Nix
Raw Normal View History

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