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 | ca8db54256725099abfc096941a25839a52f92a4 (patch) | |
tree | 42bdf05565f08d2c5d05339be3ce2822c6ae8681 /features/wayland.nix | |
parent | e3db8358601c029f2ea5e6f47cbb83c31aa3ce60 (diff) |
font: setup sans and serif fonts (deepmind sans)
Diffstat (limited to 'features/wayland.nix')
-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" ]; + }; }; }; |