feat(hyprland): replace swaybg with hyprpaper

This commit is contained in:
tux
2025-09-23 13:36:38 +05:30
parent da69c4b543
commit 6b44e284b0
2 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
{pkgs, ...}: {
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = [
"~/Wallpapers/mountain.jpg"
];
wallpaper = [
", ~/Wallpapers/mountain.jpg"
];
};
};
home.packages = with pkgs; [hyprpaper];
}