cornflake/system/core/fonts.nix
2025-01-30 21:55:28 +09:00

19 lines
322 B
Nix

{ pkgs, ... }:
{
fonts = {
packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
ibm-plex
];
fontconfig = {
defaultFonts = {
serif = [ "Noto Serif" ];
sansSerif = [ "Noto Sans" ];
monospace = [ "IBM Plex Mono" ];
};
};
};
}