From 0b1499b5b7744bd40656060f607715fee40e0e2a Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Wed, 26 Jul 2023 20:55:11 +0200 Subject: [PATCH] Move fonts to fonts option --- systems/kami/default.nix | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/systems/kami/default.nix b/systems/kami/default.nix index 48b980a..6442930 100644 --- a/systems/kami/default.nix +++ b/systems/kami/default.nix @@ -48,6 +48,18 @@ }; }; + fonts.fonts = with pkgs; [ + google-fonts + noto-fonts + noto-fonts-emoji + noto-fonts-cjk-sans + noto-fonts-cjk-serif + noto-fonts-emoji-blob-bin + nerdfonts + league-of-moveable-type + twitter-color-emoji + ]; + environment.systemPackages = with pkgs; [ mcrcon prismlauncher @@ -63,17 +75,6 @@ catppuccin-kde catppuccin-gtk tela-icon-theme - - # Fonts - google-fonts - noto-fonts - noto-fonts-emoji - noto-fonts-cjk-sans - noto-fonts-cjk-serif - noto-fonts-emoji-blob-bin - nerdfonts - league-of-moveable-type - twitter-color-emoji ]; hardware.nvidia.modesetting.enable = true;