1
Fork 0
nixos-system-config/modules/nixos/core/fonts.nix
2025-01-12 02:57:46 +01:00

23 lines
351 B
Nix

{ pkgs, ... }:
{
fonts = {
packages = with pkgs; [
nerdfonts
ipafont
noto-fonts-emoji
cantarell-fonts
newcomputermodern
];
fontconfig = {
enable = true;
cache32Bit = true;
subpixel.rgba = "rgb";
defaultFonts = {
monospace = [ "Go Mono Nerd Font" ];
};
};
};
}