diff options
Diffstat (limited to '')
-rw-r--r-- | system/default.nix | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/system/default.nix b/system/default.nix index 6cf0e9d..49aa0cd 100644 --- a/system/default.nix +++ b/system/default.nix @@ -146,24 +146,26 @@ ]; # fonts - fonts.packages = (with pkgs; [ - corefonts - dejavu_fonts - fira-code - fira-code-symbols - jetbrains-mono - material-icons - nerd-fonts.fira-code - noto-fonts - noto-fonts-cjk-sans - noto-fonts-emoji - twemoji-color-font - vistafonts - ]) ++ (with inputs.apple-fonts.packages.${pkgs.system}; [ - sf-pro - sf-mono - sf-compact - ]); + fonts.packages = + (with pkgs; [ + corefonts + dejavu_fonts + fira-code + fira-code-symbols + jetbrains-mono + material-icons + nerd-fonts.fira-code + noto-fonts + noto-fonts-cjk-sans + noto-fonts-emoji + twemoji-color-font + vistafonts + ]) + ++ (with inputs.apple-fonts.packages.${pkgs.system}; [ + sf-pro + sf-mono + sf-compact + ]); fonts.fontconfig = { enable = true; |