diff options
author | Alan Pearce | 2019-08-06 16:35:24 +0200 |
---|---|---|
committer | Alan Pearce | 2019-08-06 16:35:24 +0200 |
commit | 85c094d51f6169de365fe2466acc0f0f5a353390 (patch) | |
tree | 0f08b7b6da2f8e0d8139185d167bd0aa63564f8d /modules | |
parent | 12839aaa0916d1f8382b35b9e97c33cc079398f2 (diff) | |
download | nixos-configuration-85c094d51f6169de365fe2466acc0f0f5a353390.tar.lz nixos-configuration-85c094d51f6169de365fe2466acc0f0f5a353390.tar.zst nixos-configuration-85c094d51f6169de365fe2466acc0f0f5a353390.zip |
Xserver: improve browser font stack
Diffstat (limited to 'modules')
-rw-r--r-- | modules/services/xserver.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/services/xserver.nix b/modules/services/xserver.nix index 179a463..f1877b7 100644 --- a/modules/services/xserver.nix +++ b/modules/services/xserver.nix @@ -30,12 +30,12 @@ fonts = { enableFontDir = true; - enableDefaultFonts = true; + enableDefaultFonts = false; fontconfig = { defaultFonts = { - monospace = [ "IBM Plex Mono" ]; - sansSerif = [ "Roboto" ]; - serif = [ "Roboto Slab" ]; + monospace = [ "Liberation Mono" ]; + sansSerif = [ "Liberation Sans" ]; + serif = [ "Liberation Serif" ]; }; penultimate = { enable = true; @@ -62,14 +62,15 @@ ibm-plex liberation_ttf mononoki - opensans-ttf roboto roboto-mono roboto-slab source-code-pro source-sans-pro source-serif-pro - xorg.fontxfree86type1 + xorg.fontmiscmisc + xorg.fontcursormisc + xorg.fontbhlucidatypewriter100dpi ]; }; } |