1
Fork 0
satellite/home/features/wayland/hyprland/hyprpaper.nix

13 lines
312 B
Nix

{ config, lib, ... }: {
services.hyprpaper = {
enable = true;
settings = {
preload = [ "${config.stylix.image}" ];
wallpaper = [ ",${config.stylix.image}" ] ++
lib.forEach config.satellite.monitors ({ name, ... }:
"${name},${config.stylix.image}"
);
};
};
}