From 67e11a14105866fc76cfdb581d2b06cd40e542ec Mon Sep 17 00:00:00 2001 From: iFargle Date: Sun, 2 Jul 2023 16:50:31 +0900 Subject: [PATCH] test --- configuration.nix | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/configuration.nix b/configuration.nix index 5a0cec07..58f7cf0e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -154,21 +154,24 @@ }; # Fonts - fontconfig = { - defaultFonts = { - emoji = [ "Noto Color Emoji" ]; - monospace = [ "JetBrainsMono Nerd Font" "Cascadia Code" "Sarasa Mono SC" ]; - sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; - serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; + fonts = { + fontconfig = { + defaultFonts = { + emoji = [ "Noto Color Emoji" ]; + monospace = [ "JetBrainsMono Nerd Font" "Cascadia Code" "Sarasa Mono SC" ]; + sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; + serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; + }; + includeUserConf = false; }; - includeUserConf = false; + + fonts = with pkgs; [ + cascadia-code + (nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; }) + noto-fonts-emoji + sarasa-gothic + ]; }; - fonts.fonts = with pkgs; [ - cascadia-code - (nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; }) - noto-fonts-emoji - sarasa-gothic - ]; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions