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

17 lines
368 B
Nix

{ lib, config, ... }:
{
stylix = lib.recursiveUpdate
{
targets.grub.enable = false; # the styling makes grub more ugly
image = config.swarselsystems.wallpaper;
}
config.swarselsystems.stylix;
home-manager.users.swarsel = {
stylix = {
targets = {
emacs.enable = false;
waybar.enable = false;
};
};
};
}