cfg/mod/fonts.nix
2025-03-01 18:19:19 +01:00

10 lines
No EOL
237 B
Nix

{ pkgs, ... }: {
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
nerd-fonts.noto
];
fonts.fontDir.enable = true;
fonts.fontconfig.defaultFonts.monospace = [ "Noto Nerd Font Mono" ];
}