From 23b7c235f9107238420e1e4cc64935f195619aa5 Mon Sep 17 00:00:00 2001 From: Jo Date: Fri, 23 May 2025 01:42:24 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Update=20default=20set=20of=20syste?= =?UTF-8?q?m=20fonts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/nixos/system/fonts/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/modules/nixos/system/fonts/default.nix b/modules/nixos/system/fonts/default.nix index 43f9966..256cfa5 100644 --- a/modules/nixos/system/fonts/default.nix +++ b/modules/nixos/system/fonts/default.nix @@ -14,7 +14,22 @@ in { enable = mkEnableOption "system font management"; fonts = mkOption { type = listOf package; - default = with pkgs; [noto-fonts noto-fonts-cjk-sans noto-fonts-cjk-serif noto-fonts-emoji nerd-fonts.bigblue-terminal nerd-fonts.zed-mono monocraft]; + default = with pkgs; [ + corefonts + + noto-fonts + noto-fonts-cjk-sans + noto-fonts-cjk-serif + + inter + + nerd-fonts.zed-mono + monocraft + + noto-fonts-emoji + material-icons + material-design-icons + ]; example = [noto-fonts noto-fonts-emoji]; description = "Install additional font packages"; };