From 792754fac3149d2ae78a9d28c447e21063d9e005 Mon Sep 17 00:00:00 2001 From: ooks-io Date: Wed, 22 Nov 2023 23:56:36 +1300 Subject: [PATCH] add: cjk/emoji fonts --- home/ooks/features/essentials/fonts.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/home/ooks/features/essentials/fonts.nix b/home/ooks/features/essentials/fonts.nix index 56637b6..a927679 100644 --- a/home/ooks/features/essentials/fonts.nix +++ b/home/ooks/features/essentials/fonts.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ pkgs, ... }: { fontProfiles = { enable = true; monospace = { @@ -10,4 +10,9 @@ package = pkgs.fira; }; }; + home.packages = with pkgs; [ + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + ]; }