diff options
author | sinanmohd <pcmsinan@gmail.com> | 2023-07-04 16:02:07 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-07-04 16:02:07 +0530 |
commit | 47889e2ac8c5e0a0434c090c3d2557695f0fe1c9 (patch) | |
tree | 42bdf05565f08d2c5d05339be3ce2822c6ae8681 | |
parent | cf3409e265feea258459bf4f1cf11e1cd16c328e (diff) |
font: setup sans and serif fonts (deepmind sans)
-rw-r--r-- | features/wayland.nix | 8 |
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" ]; + }; }; }; |