summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-03-04 14:50:15 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-03-04 14:59:11 -0600
commit42cf524f2d15a9eacf683be4076e8451d0492f83 (patch)
tree543f48cdb27868274ea9011de669f723ff533aa8 /nixos
parent9aed6ccb4b2ee16b898973572e4b6ed7d56ddfe0 (diff)
downloadnixlib-42cf524f2d15a9eacf683be4076e8451d0492f83.tar
nixlib-42cf524f2d15a9eacf683be4076e8451d0492f83.tar.gz
nixlib-42cf524f2d15a9eacf683be4076e8451d0492f83.tar.bz2
nixlib-42cf524f2d15a9eacf683be4076e8451d0492f83.tar.lz
nixlib-42cf524f2d15a9eacf683be4076e8451d0492f83.tar.xz
nixlib-42cf524f2d15a9eacf683be4076e8451d0492f83.tar.zst
nixlib-42cf524f2d15a9eacf683be4076e8451d0492f83.zip
nixos/plasma5: set default fonts for Plasma desktop
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/desktop-managers/plasma5.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix
index 24225308ffb3..b02524012026 100644
--- a/nixos/modules/services/x11/desktop-managers/plasma5.nix
+++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix
@@ -196,6 +196,11 @@ in
       };
 
       fonts.fonts = with pkgs; [ noto-fonts hack-font ];
+      fonts.fontconfig.defaultFonts = {
+        monospace = [ "Hack" "Noto Mono" ];
+        sansSerif = [ "Noto Sans" ];
+        serif = [ "Noto Serif" ];
+      };
 
       programs.ssh.askPassword = "${plasma5.ksshaskpass.out}/bin/ksshaskpass";