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
19 lines
509 B
Nix
19 lines
509 B
Nix
{ pkgs, ... }:
|
|
{
|
|
stylix = {
|
|
enable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml";
|
|
image = ./wallpaper.png;
|
|
cursor = {
|
|
package = pkgs.mint-cursor-themes;
|
|
name = "Bibata-Modern-Classic";
|
|
size = 24;
|
|
};
|
|
polarity = "dark";
|
|
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
|
|
};
|
|
};
|
|
}
|