nix-config/home/hyprland/hyprpaper.nix

26 lines
408 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
2025-09-10 11:48:22 +02:00
services.hyprpaper = {
enable = true;
settings = {
preload = [
"Pictures/Wallpapers/tokio.png"
];
wallpaper = ", Pictures/Wallpapers/tokio.png";
};
2025-09-03 10:03:29 +02:00
};
2025-03-27 12:54:14 +01:00
2025-09-03 10:03:29 +02:00
}