diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-05 18:38:38 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-05 18:38:38 +0200 |
| commit | 06e4f3469dde0bc54e4e9d15c52ab53634789195 (patch) | |
| tree | 7da68ff81f9eef6a6f235b27a964f9211c7d1070 /home/rices | |
| parent | 3dd57340bfd059ea334213b13482b47d410ae267 (diff) | |
Disabled stylix autoEnable and instead set manually what should be enabled
Diffstat (limited to 'home/rices')
| -rw-r--r-- | home/rices/cassette-futurism/system.nix | 9 |
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; + }; }; } |
