.dotfiles/profiles/home/common/stylix.nix
2025-02-25 22:46:41 +01:00

12 lines
282 B
Nix

{ lib, config, ... }:
{
stylix = lib.mkIf (!config.swarselsystems.isNixos) (lib.recursiveUpdate
{
image = config.swarselsystems.wallpaper;
targets = {
emacs.enable = false;
waybar.enable = false;
};
}
config.swarselsystems.stylix);
}