summaryrefslogtreecommitdiffstats
path: root/sys/font
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-05-07 20:14:39 +0200
committersils <sils@sils.li>2023-05-07 20:14:39 +0200
commitacf496fa8db90b9df999d20083d91ca24e1e098e (patch)
tree400e7707b1c32adb56d767fd22950cabb782e353 /sys/font
parentFeat(treewide): Get river working (diff)
downloadnix-config-acf496fa8db90b9df999d20083d91ca24e1e098e.zip
Feat(treewide): Add river bloat
Diffstat (limited to 'sys/font')
-rw-r--r--sys/font/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/sys/font/default.nix b/sys/font/default.nix
new file mode 100644
index 0000000..97011d3
--- /dev/null
+++ b/sys/font/default.nix
@@ -0,0 +1,25 @@
+{
+ config,
+ pkgs,
+ ...
+}: let
+ nerdFont = pkgs.nerdfonts.override {
+ fonts = [
+ "SourceCodePro"
+ ];
+ };
+in {
+ # TODO maybe add other fonts?
+ fonts = {
+ fonts = [
+ nerdFont
+ ];
+ fontconfig = {
+ defaultFonts = {
+ # serif = ["Vazir"];
+ # sansSerif = ["Vazir"];
+ monospace = ["SourceCodePro"];
+ };
+ };
+ };
+}