flake/common/fonts.nix

15 lines
527 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
{
fonts.fontDir.enable = true;
2023-07-27 17:34:05 +02:00
fonts.packages = with pkgs; [
2023-10-13 15:59:44 +02:00
comfortaa # Clean and modern font
corefonts # Microsoft Core Fonts
emacs-all-the-icons-fonts # Emacs all-the-icons-fonts
roboto # Android Family of Fonts
noto-fonts-cjk-sans # CJK Family of Fonts
noto-fonts-cjk-serif # CJK Family of Fonts
2023-10-13 15:57:56 +02:00
(nerdfonts.override { fonts = [ "FiraCode" "JetBrainsMono" "SpaceMono" "DaddyTimeMono" ]; })
];
}