diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-17 19:09:27 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-17 19:09:27 +0200 |
commit | ad58b57df7b298bc3e25c578f590d44da3ce36c9 (patch) | |
tree | 28be43da790fa014e13a7284e5a5979537a8721a /modules/fonts | |
download | nixos-config-ad58b57df7b298bc3e25c578f590d44da3ce36c9.tar.gz nixos-config-ad58b57df7b298bc3e25c578f590d44da3ce36c9.tar.bz2 nixos-config-ad58b57df7b298bc3e25c578f590d44da3ce36c9.zip |
Initial commit
Diffstat (limited to 'modules/fonts')
-rw-r--r-- | modules/fonts/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix new file mode 100644 index 0000000..9e791b6 --- /dev/null +++ b/modules/fonts/default.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: { + fonts.fonts = with pkgs; [ + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + nerdfonts + ]; +} |