From d8b57452ee5fc2e443f8cfa7253cc99642ee9a86 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 29 Apr 2024 23:51:07 +0200 Subject: [PATCH] change default fonts to new ones --- nixos/shared/packages/default.nix | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/nixos/shared/packages/default.nix b/nixos/shared/packages/default.nix index ae89bcd..23cd867 100644 --- a/nixos/shared/packages/default.nix +++ b/nixos/shared/packages/default.nix @@ -43,11 +43,20 @@ # System libraries ]; - - # fonts.packages = with pkgs; [ - # noto-fonts - # noto-fonts-emoji-blob-bin - # noto-fonts-emoji - # (nerdfonts.override {fonts = ["FiraCode" "DroidSansMono"];}) - # ]; + fonts = { + packages = with pkgs; [ + cantarell-fonts + dejavu_fonts + fira-code + noto-fonts + noto-fonts-cjk-sans + noto-fonts-cjk-serif + paratype-pt-sans + paratype-pt-mono + paratype-pt-serif + roboto + twemoji-color-font + ]; + enableDefaultPackages = false; + }; }