From f2b8b8d4316eddffcc654c73dbc18953e4995c85 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Tue, 25 Mar 2025 23:47:02 +0000 Subject: [PATCH] fixed nvf theming issue in stylix the stylix plugin for nvf was breaking somewhere and causing nvf to launch with "invalid highlight color" error and then launch with no custom theme. disabling stylix.targets.nvf.enable fixed this as it inherits the theme from somewhere else, i assume alacritty --- home-manager/stylix.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/home-manager/stylix.nix b/home-manager/stylix.nix index f7492b9..f61d1f9 100644 --- a/home-manager/stylix.nix +++ b/home-manager/stylix.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { stylix = { enable = true; @@ -10,7 +10,10 @@ size = 24; }; polarity = "dark"; - targets.qt.enable = true; - targets.firefox.profileNames = ["blue"]; + targets = { + qt.enable = true; + firefox.profileNames = ["blue"]; + nvf.enable = false; # This was causing an Invalid highlight colour, and I'm happy for it to inherit theme from alacritty + }; }; }