nixfleet/hmModules/hyprland/hyprpaper.nix
Andrea Ciceri 6c0376da29
All checks were successful
/ test (push) Successful in 1m1s
Things
2024-09-20 11:18:38 +02:00

12 lines
284 B
Nix

let
wallpaper = ./wallpaper.png;
in {
xdg.configFile."hypr/hyprpaper.conf".text = ''
splash = false
preload = ${wallpaper}
wallpaper = eDP-1,${wallpaper}
wallpaper = DP-1,${wallpaper}
wallpaper = DP-2,${wallpaper}
wallpaper = HDMI-A-1,${wallpaper}
'';
}