This commit is contained in:
mtgmonkey
2025-12-28 21:06:06 +01:00
parent 160bdcfb42
commit 12438a9c8d
6 changed files with 857 additions and 0 deletions

35
home/stylix.nix Normal file
View File

@@ -0,0 +1,35 @@
{
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 = ./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;
};
};
}