Files
nix-config/modules/home/desktop/hyprland/hyprpaper.nix
2025-11-14 04:05:04 +05:30

22 lines
349 B
Nix

{pkgs, ...}: {
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = [
"~/Wallpapers/new/sunset-pixel.png"
];
wallpaper = [
", ~/Wallpapers/new/sunset-pixel.png"
];
};
};
home.packages = with pkgs; [hyprpaper];
}