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

13 lines
312 B
Nix
Raw Normal View History

2024-05-21 01:37:39 +02:00
{ config, lib, ... }: {
2023-12-02 00:46:56 +01:00
services.hyprpaper = {
enable = true;
2024-05-21 01:37:39 +02:00
settings = {
preload = [ "${config.stylix.image}" ];
wallpaper = [ ",${config.stylix.image}" ] ++
lib.forEach config.satellite.monitors ({ name, ... }:
"${name},${config.stylix.image}"
);
};
2023-12-02 00:46:56 +01:00
};
}