mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
12 lines
363 B
Nix
12 lines
363 B
Nix
{ lib, config, vars, ... }:
|
|
{
|
|
options.swarselmodules.stylix = lib.mkEnableOption "stylix settings";
|
|
config = lib.mkIf config.swarselmodules.stylix {
|
|
stylix = lib.mkIf (!config.swarselsystems.isNixos) (lib.recursiveUpdate
|
|
{
|
|
image = config.swarselsystems.wallpaper;
|
|
targets = vars.stylixHomeTargets;
|
|
}
|
|
vars.stylix);
|
|
};
|
|
}
|