Files
home-manager/home/stylix.nix
mtgmonkey f1dd42919e fin
2025-12-28 21:14:36 +01:00

36 lines
753 B
Nix
Executable File

{
pkgs,
config,
...
}: {
stylix = {
enable = true;
# rebecca has lavener bkg
# tube has dark gray bkg
# silk-light is light theme
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-material-dark-hard.yaml";
polarity = "dark";
image = ./stylix/nix-wallpaper-gear.png;
fonts = {
monospace = {
package = pkgs.miracode;
name = "Miracode";
};
serif = config.stylix.fonts.sansSerif;
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
sizes = {
applications = 12;
terminal = 10;
};
};
cursor = {
package = pkgs.hackneyed;
name = "Hackneyed";
size = 16;
};
};
}