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
This commit is contained in:
parent
f8268374ce
commit
f2b8b8d431
1 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -10,7 +10,10 @@
|
||||||
size = 24;
|
size = 24;
|
||||||
};
|
};
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
targets.qt.enable = true;
|
targets = {
|
||||||
targets.firefox.profileNames = ["blue"];
|
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
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue