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; + }; }