also fixed nvf styling as stylix added it as a target also changed cmp, to almost no effect
16 lines
356 B
Nix
16 lines
356 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 = {
|
|
firefox.profileNames = ["blue"];
|
|
};
|
|
};
|
|
}
|