diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-08 00:30:56 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-08 00:51:26 +0200 |
commit | 96c7c7f5d24e6aca645a349ac0471a99691ba38d (patch) | |
tree | 1ab464234147281bd876ec406c18cc11aa70e4c7 /modules | |
parent | XMonad: Fix bug with borders not showing on non-fullscreen floating windows (diff) | |
download | nixos-config-96c7c7f5d24e6aca645a349ac0471a99691ba38d.tar.gz nixos-config-96c7c7f5d24e6aca645a349ac0471a99691ba38d.tar.bz2 nixos-config-96c7c7f5d24e6aca645a349ac0471a99691ba38d.zip |
Fonts: Only install inconsolata and noto nerd-fonts
Diffstat (limited to 'modules')
-rw-r--r-- | modules/fonts/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix index 9e791b6..d1c8c40 100644 --- a/modules/fonts/default.nix +++ b/modules/fonts/default.nix @@ -3,6 +3,6 @@ noto-fonts noto-fonts-cjk noto-fonts-emoji - nerdfonts + (nerdfonts.override { fonts = [ "InconsolataLGC" "Noto" ]; }) ]; } |