From 941d7725e593666d54cdcafb503234bd0fa25606 Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Tue, 13 Aug 2024 21:00:41 +0200 Subject: more fonts --- share/common.nix | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) (limited to 'share/common.nix') diff --git a/share/common.nix b/share/common.nix index 40aca77..27c333b 100644 --- a/share/common.nix +++ b/share/common.nix @@ -425,21 +425,28 @@ in # install a list of useful fonts packages = with pkgs; [ - # large family of sans, serif and mono fonts with good unicode coverage - ibm-plex - - # fonts patched with all needed symbols my shell prompt needs: - # cullmann on 🌐 neko in /data/nixos on  master [!?] - nerdfonts + # good UI sans serif fonts family + inter + + # get large parts of unicode covered with the Google Noto fonts family + # all needed symbols that my shell prompt needs + # example: cullmann on 🌐 neko in /data/nixos on  master [!?] + # contains serif font that nicely matches with Inter + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + + # contains monospace fonts that match well with Inter + recursive ]; # use some proper default fonts fontconfig = { enable = true; defaultFonts = { - monospace = [ "IBM Plex Mono" ]; - sansSerif = [ "IBM Plex Sans" ]; - serif = [ "IBM Plex Serif" ]; + monospace = [ "Recursive Mono Linear Static" ]; + sansSerif = [ "Inter" ]; + serif = [ "Noto Serif" ]; }; }; }; -- cgit v1.2.3