summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-08-05 22:20:01 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-08-05 22:20:01 +0200
commit7d44ad2076b27f795aae233b082cee59d4fb077c (patch)
tree083742c7a27ddddff2df55d28598bd194d0c0649
parent8f5ee23db4399ee7ce6d8797f6cd53be88f2630b (diff)
play more with fonts
-rw-r--r--share/common.nix18
1 files changed, 5 insertions, 13 deletions
diff --git a/share/common.nix b/share/common.nix
index 2ba073f..018b274 100644
--- a/share/common.nix
+++ b/share/common.nix
@@ -423,22 +423,14 @@ in
# fonts I use
packages = with pkgs; [
- # good serif ui font
- alegreya
-
# good sans-serif ui font
inter
+ # contains good serif ui font and support for Japanese
+ ibm-plex
+
# good monospace coding and terminal font
jetbrains-mono
-
- # unicode capable fonts for glyph fallback
- noto-fonts
- noto-fonts-cjk
- noto-fonts-cjk-sans
- noto-fonts-cjk-serif
- noto-fonts-emoji
- noto-fonts-extra
];
# tune fontconfig
@@ -446,8 +438,8 @@ in
enable = true;
defaultFonts = {
monospace = [ "JetBrains Mono" ];
- sansSerif = [ "Inter" ];
- serif = [ "Alegreya" ];
+ sansSerif = [ "Inter Display" ];
+ serif = [ "IBM Plex Serif" ];
};
};
};