nixconf/home-manager/stylix.nix
Gabriella Bere ca67faeead fixed firefox search issue
also fixed nvf styling as stylix added it as a target
also changed cmp, to almost no effect
2025-04-27 18:41:12 +01:00

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"];
};
};
}