home-manager/home/stylix.nix
2025-05-31 13:40:48 -04:00

24 lines
553 B
Nix
Executable file

{
config,
pkgs,
...
}: {
stylix = {
enable = true;
# rebecca has lavener bkg
# tube has dark gray bkg
# silk-light is light theme
base16Scheme = "${pkgs.base16-schemes}/share/themes/silk-light.yaml";
polarity = "light";
image = ./stylix/nix-wallpaper-gear.png;
fonts = {
serif = config.stylix.fonts.monospace;
sansSerif = config.stylix.fonts.monospace;
emoji = config.stylix.fonts.monospace;
monospace = {
package = pkgs.miracode;
name = "Miracode";
};
};
};
}