about summary refs log tree commit diff stats
path: root/system/font
diff options
context:
space:
mode:
Diffstat (limited to 'system/font')
-rw-r--r--system/font/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/system/font/default.nix b/system/font/default.nix
deleted file mode 100644
index 303efcf7..00000000
--- a/system/font/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{pkgs, ...}: let
-  nerdFont = pkgs.nerdfonts.override {
-    fonts = [
-      "SourceCodePro"
-    ];
-  };
-in {
-  # TODO: maybe add other fonts?
-  fonts = {
-    packages = [
-      nerdFont
-    ];
-    fontconfig = {
-      defaultFonts = {
-        # serif = ["Vazir"];
-        # sansSerif = ["Vazir"];
-        monospace = ["SourceCodePro"];
-      };
-    };
-  };
-}