aboutsummaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-04-05 18:38:38 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-04-05 18:38:38 +0200
commit06e4f3469dde0bc54e4e9d15c52ab53634789195 (patch)
tree7da68ff81f9eef6a6f235b27a964f9211c7d1070 /home
parent3dd57340bfd059ea334213b13482b47d410ae267 (diff)
Disabled stylix autoEnable and instead set manually what should be enabled
Diffstat (limited to 'home')
-rw-r--r--home/rices/cassette-futurism/system.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/home/rices/cassette-futurism/system.nix b/home/rices/cassette-futurism/system.nix
index 03439b5..1a4cc59 100644
--- a/home/rices/cassette-futurism/system.nix
+++ b/home/rices/cassette-futurism/system.nix
@@ -36,9 +36,10 @@ in {
];
# Stylix configuration - cassette futurism
+ # Only enable for TTY and system-level theming, XFCE is manually configured
stylix = {
enable = true;
- autoEnable = true;
+ autoEnable = false; # Disable auto-theming, we'll enable specific targets
base16Scheme = vars.base16;
@@ -83,5 +84,11 @@ in {
};
polarity = "dark";
+
+ # Enable only specific targets (TTY, not XFCE/GTK)
+ targets = {
+ console.enable = true; # TTY theming
+ nixos-icons.enable = false;
+ };
};
}