refactor(stylix): extract shared stylix overrides into 'targets.nix'

This commit is contained in:
2026-04-21 16:54:01 +02:00
parent 8f756554ad
commit b6500b97ff
3 changed files with 16 additions and 30 deletions

View File

@@ -30,20 +30,7 @@ in
home-manager.sharedModules = [
{
stylix.targets = {
firefox = {
profileNames = [ "default" ];
colorTheme.enable = true;
};
librewolf = {
profileNames = [ "default" ];
colorTheme.enable = true;
};
kitty.variant256Colors = true;
gnome.enable = false;
gtk.enable = false;
nixvim.enable = false;
};
stylix.targets = import ./targets.nix;
}
];
}