From d530804cb725f329b1faf3ce488b430fa36039bb Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 28 May 2023 13:53:08 -0700 Subject: font: switch to Roboto for system font and JetBrain for monospace --- profiles/workstation.nix | 28 +++++++++++----------------- 1 file changed, 11 insertions(+), 17 deletions(-) (limited to 'profiles') diff --git a/profiles/workstation.nix b/profiles/workstation.nix index acc04c5..e607c0d 100644 --- a/profiles/workstation.nix +++ b/profiles/workstation.nix @@ -43,34 +43,28 @@ hardware.pulseaudio.enable = false; + # This is a good source of information about fonts: + # https://github.com/system-fonts/modern-font-stacks fonts = { enableDefaultFonts = true; fontDir.enable = true; fontconfig = { enable = true; defaultFonts = { - serif = [ "Bitstream Vera Serif" ]; - sansSerif = [ "Bitstream Vera Sans" ]; - monospace = [ "Bitstream Vera Sans Mono" ]; + serif = [ "DejaVu Serif" ]; + sansSerif = [ "Roboto" ]; + monospace = [ "JetBrain Mono" ]; }; }; fonts = with pkgs; [ + cantarell-fonts dejavu_fonts - ttf_bitstream_vera - + etBook font-awesome_5 - - noto-fonts - noto-fonts-cjk # Chinese, Japanese, Korean - noto-fonts-emoji - noto-fonts-emoji - noto-fonts-extra - - cantarell-fonts - - source-code-pro - source-sans-pro - source-serif-pro + google-fonts + jetbrains-mono + powerline-fonts + roboto ]; }; -- cgit 1.4.1