13 lines
312 B
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}"
|
|
);
|
|
};
|
|
};
|
|
}
|