diff options
author | sinanmohd <pcmsinan@gmail.com> | 2023-07-04 11:00:52 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-07-04 11:03:36 +0530 |
commit | cf3409e265feea258459bf4f1cf11e1cd16c328e (patch) | |
tree | c441c7ec7deec66c5ee144b650289fd7831e6e2f | |
parent | 99411dd26f7fcb6b7ef1c34bcbe1faf62b6aaf63 (diff) |
font, wayland: setup monospace font and glyphs
-rw-r--r-- | features/wayland.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/features/wayland.nix b/features/wayland.nix index 8d6cb2a..2d3af88 100644 --- a/features/wayland.nix +++ b/features/wayland.nix @@ -67,7 +67,6 @@ in libnotify wob wlr-randr - nerdfonts tor-browser-bundle-bin wtype # gtk @@ -85,10 +84,19 @@ in extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; }; + # font + fonts = { + fonts = [ pkgs.terminus-nerdfont ]; + enableDefaultFonts = true; + fontconfig = { + hinting.style = "hintfull"; + defaultFonts.monospace = [ "Terminess Nerd Font" ]; + }; + }; + # misc security.polkit.enable = true; hardware.opengl.enable = true; - fonts.enableDefaultFonts = true; programs.dconf.enable = true; programs.xwayland.enable = true; programs.gnupg.agent = { |