diff options
author | Alan Pearce | 2017-09-28 17:12:33 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-28 17:12:33 +0200 |
commit | 89b17b2c81a63b8ada689053b4ac98ac46548c86 (patch) | |
tree | fe523c94a3c1c1e670d4bf57d32d714b3ac2262e | |
parent | 302b7dd0a5b2e3f2a94364d33c532be990622bff (diff) | |
download | nixos-configuration-89b17b2c81a63b8ada689053b4ac98ac46548c86.tar.lz nixos-configuration-89b17b2c81a63b8ada689053b4ac98ac46548c86.tar.zst nixos-configuration-89b17b2c81a63b8ada689053b4ac98ac46548c86.zip |
xserver: Change fonts
The "Source" fonts seem to look quite nice at normal DPI and semi-high DPI.
-rw-r--r-- | modules/services/xserver.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/services/xserver.nix b/modules/services/xserver.nix index 2cef678..e7b2680 100644 --- a/modules/services/xserver.nix +++ b/modules/services/xserver.nix @@ -44,9 +44,9 @@ enableDefaultFonts = true; fontconfig = { defaultFonts = { - monospace = [ "Liberation Mono" ]; - sansSerif = [ "Liberation Sans" ]; - serif = [ "Liberation Serif" ]; + monospace = [ "Source Code Pro" ]; + sansSerif = [ "Source Sans Pro" ]; + serif = [ "Source Serif Pro" ]; }; ultimate = { enable = true; |