summaryrefslogtreecommitdiff
path: root/users/mtgmonkey/stylix.nix
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2025-12-30 19:46:56 +0100
committerandromeda <andromeda@lenovo>2025-12-30 19:47:50 +0100
commit07655e513522db296b1032290c7cfb6a5ac64181 (patch)
tree5668cf8c8360dca928498ed06623f281c650c7d2 /users/mtgmonkey/stylix.nix
parent89dfb0adb921ea3481987cae74f5ce626c4e7c2d (diff)
parent9e402fdfa3f967e6b7497507f6d8eefbad6a71a9 (diff)
add secret scheme
Diffstat (limited to 'users/mtgmonkey/stylix.nix')
-rw-r--r--users/mtgmonkey/stylix.nix29
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;
+ };
+ };
+ };
+}