From 07da2f1b58d6a3f2d6b321bcb4c9f89138ba096e Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Wed, 15 Feb 2023 21:02:43 +0100 Subject: [PATCH] update fonts --- legacy/modules/fonts.nix | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/legacy/modules/fonts.nix b/legacy/modules/fonts.nix index 04980ec..98be8ab 100644 --- a/legacy/modules/fonts.nix +++ b/legacy/modules/fonts.nix @@ -2,27 +2,26 @@ { fonts = { fontconfig.defaultFonts = { - monospace = [ "Ubuntu Mono" ]; sansSerif = [ "Ubuntu" ]; + monospace = [ "Ubuntu Mono" ]; }; fonts = with pkgs; [ cantarell-fonts # gnome default - dina-font fira + fira-code # coding + fira-code-symbols # ligatures fira-mono - fira-code - fira-code-symbols - font-awesome - liberation_ttf - mplus-outline-fonts.githubRelease + font-awesome # icons + joypixels # emojis + liberation_ttf # main microsoft fonts + # mplus-outline-fonts.githubRelease # microsoft fonts noto-fonts - noto-fonts-cjk + noto-fonts-cjk-sans noto-fonts-emoji - proggyfonts + noto-fonts-extra ubuntu_font_family - joypixels - unifont # unicode + unifont # unicode fallback ]; }; nixpkgs.config.joypixels.acceptLicense = true;