Files
nix-config/modules/home/desktop/hyprland/hyprpaper.nix
2026-01-15 20:20:26 +05:30

20 lines
327 B
Nix

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