cfg/mod/fonts.nix
2025-03-22 12:28:50 +01:00

11 lines
238 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" ];
}