summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorAlan Pearce2017-09-09 23:27:43 +0200
committerAlan Pearce2017-09-09 23:27:43 +0200
commitdabc447cb712c6033ea3faf3131d4e61a5133fcc (patch)
tree6bbf1a5db07f12e4d57ffd57979a7ead3f747e2c /modules
parent43b45692de6fdd24c64b5e530d59290d38ff6e93 (diff)
parent33bdedd376532cd30eb77de11fc7e2341c069531 (diff)
downloadnixos-configuration-dabc447cb712c6033ea3faf3131d4e61a5133fcc.tar.lz
nixos-configuration-dabc447cb712c6033ea3faf3131d4e61a5133fcc.tar.zst
nixos-configuration-dabc447cb712c6033ea3faf3131d4e61a5133fcc.zip
Merge branch 'master' of ssh://alanpearce.eu/nixos-configuration
Diffstat (limited to 'modules')
-rw-r--r--modules/hidpi.nix8
-rw-r--r--modules/xserver.nix6
2 files changed, 11 insertions, 3 deletions
diff --git a/modules/hidpi.nix b/modules/hidpi.nix
index 1f4644c..762e50e 100644
--- a/modules/hidpi.nix
+++ b/modules/hidpi.nix
@@ -6,4 +6,12 @@
       terminus_font
     ];
   };
+
+  fonts = {
+    defaultFonts = {
+      monospace = [ "Noto Mono" ];
+      sansSerif = [ "Noto Sans" ];
+      serif = [ "Noto Serif" ];
+    };
+  };
 }
diff --git a/modules/xserver.nix b/modules/xserver.nix
index 0c8e05f..799eab8 100644
--- a/modules/xserver.nix
+++ b/modules/xserver.nix
@@ -41,9 +41,9 @@
     enableDefaultFonts = true;
     fontconfig = {
       defaultFonts = {
-        monospace = [ "Roboto Mono" ];
-        sansSerif = [ "Noto Sans" ];
-        serif = [ "Noto Serif" ];
+        monospace = [ "Liberation Mono" ];
+        sansSerif = [ "Liberation Sans" ];
+        serif = [ "Liberation Serif" ];
       };
       ultimate = {
         enable = true;