about summary refs log tree commit diff stats
path: root/system/font
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-26 23:42:21 +0200
committerSoispha <soispha@vhack.eu>2023-08-26 23:42:21 +0200
commit3f600ab07dbad3b6dd7655587ddea158b19aea71 (patch)
tree7164ccd965e1d14ade970aeb8eb188b1442a6c91 /system/font
parentStyle(treewide): Format all lua-files makes lua ➛ nix easier (diff)
downloadnixos-config-3f600ab07dbad3b6dd7655587ddea158b19aea71.tar.gz
nixos-config-3f600ab07dbad3b6dd7655587ddea158b19aea71.zip
Refactor(treewide): Abbreviate path names
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"];
-      };
-    };
-  };
-}