diff options
Diffstat (limited to 'modules/core/fonts.nix')
| -rw-r--r-- | modules/core/fonts.nix | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/modules/core/fonts.nix b/modules/core/fonts.nix new file mode 100644 index 0000000..8a56aa7 --- /dev/null +++ b/modules/core/fonts.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: + +{ +  fonts.packages = with pkgs; [ +    (nerdfonts.override { fonts = [ "UbuntuMono" ]; }) +    noto-fonts +    noto-fonts-cjk +    noto-fonts-emoji +    liberation_ttf +  ]; +} | 
