diff options
Diffstat (limited to 'users/mtgmonkey/stylix.nix')
| -rw-r--r-- | users/mtgmonkey/stylix.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/users/mtgmonkey/stylix.nix b/users/mtgmonkey/stylix.nix new file mode 100644 index 0000000..f2538b0 --- /dev/null +++ b/users/mtgmonkey/stylix.nix @@ -0,0 +1,29 @@ +{ + 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"; + 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; + }; + }; + }; +} |
