about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--system/font/default.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/system/font/default.nix b/system/font/default.nix
index 09e6520e..97011d30 100644
--- a/system/font/default.nix
+++ b/system/font/default.nix
@@ -10,7 +10,16 @@
   };
 in {
   # TODO maybe add other fonts?
-  fonts.fonts = [
-    nerdFont
-  ];
+  fonts = {
+    fonts = [
+      nerdFont
+    ];
+    fontconfig = {
+      defaultFonts = {
+        # serif = ["Vazir"];
+        # sansSerif = ["Vazir"];
+        monospace = ["SourceCodePro"];
+      };
+    };
+  };
 }