.dotfiles/profiles/home/common/stylix.nix
2025-03-19 17:14:49 +01:00

13 lines
317 B
Nix

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