Files
nixos-config/glasshouse-laptop/home/hyprland/hyprpaper.nix
2024-10-12 12:02:36 -04:00

19 lines
378 B
Nix

{ username, ... }:
{
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = [ "/home/${username}/Pictures/Wallpapers/cat-leaves.png" ];
wallpaper = [
"DP-1,/home/${username}/Pictures/Wallpapers/cat-leaves.png"
"HDMI-A-1,/home/${username}/Pictures/Wallpapers/cat-leaves.png"
];
};
};
}