summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--features/wayland.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/features/wayland.nix b/features/wayland.nix
index 2d3af88..bf7701f 100644
--- a/features/wayland.nix
+++ b/features/wayland.nix
@@ -86,11 +86,15 @@ in
# font
fonts = {
- fonts = [ pkgs.terminus-nerdfont ];
+ fonts = [ pkgs.terminus-nerdfont pkgs.dm-sans ];
enableDefaultFonts = true;
fontconfig = {
hinting.style = "hintfull";
- defaultFonts.monospace = [ "Terminess Nerd Font" ];
+ defaultFonts = {
+ monospace = [ "Terminess Nerd Font" ];
+ serif = [ "DeepMind Sans" ];
+ sansSerif = [ "DeepMind Sans" ];
+ };
};
};