summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <pcmsinan@gmail.com>2023-07-04 16:02:07 +0530
committersinanmohd <pcmsinan@gmail.com>2023-07-04 16:02:07 +0530
commitca8db54256725099abfc096941a25839a52f92a4 (patch)
tree42bdf05565f08d2c5d05339be3ce2822c6ae8681
parente3db8358601c029f2ea5e6f47cbb83c31aa3ce60 (diff)
font: setup sans and serif fonts (deepmind sans)
-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" ];
+ };
};
};