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
|
|
|
};
|
|
|
|
}
|