diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-09 21:52:19 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-09 21:52:19 +0530 | 
| commit | db0493863f4d89a074eea0b4e230ff00cea67611 (patch) | |
| tree | f3e71ae0efd67a926c2a8e7143e4fb0788857947 /modules/core/fonts.nix | |
| parent | d4c18c4b2f659d1b7dfceefcc06e498762b9c5e4 (diff) | |
update
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 +  ]; +} | 
