From a03fe53dd5caaf3395eebe8b2b812543fdbf19ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 24 Sep 2019 23:31:22 +0200 Subject: [PATCH] fix(fonts): use Inconsolata --- configs/fonts.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/configs/fonts.nix b/configs/fonts.nix index 200e338..374bb5b 100644 --- a/configs/fonts.nix +++ b/configs/fonts.nix @@ -14,6 +14,13 @@ fonts = { enableDefaultFonts = true; enableFontDir = true; - fonts = with pkgs; [ corefonts eb-garamond fira libertine lmodern noto-fonts roboto ubuntu_font_family ]; + fonts = with pkgs; [ inconsolata corefonts eb-garamond fira libertine lmodern noto-fonts roboto roboto-mono roboto-slab ubuntu_font_family ]; + fontconfig = { + defaultFonts.monospace = [ "Inconsolata" ]; + ultimate = { + enable = true; + substitutions = "combi"; + }; + }; }; }