diff options
| author | andromeda <andromeda@lenovo> | 2025-12-30 13:47:08 +0100 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2025-12-30 13:47:08 +0100 |
| commit | e39747ae2e9f4032b234f1f8d9a399b240f66539 (patch) | |
| tree | c8859757d48bc012f3c2d0526f09aed2896797e7 /users/mtgmonkey/stylix.nix | |
| parent | 9a089ea5090c72e363446b1576724edfbdb42c81 (diff) | |
andromeda: add agenix; machines: start to add box
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; + }; + }; + }; +} |
