snowflake/system/fontconfig.nix
2025-06-06 17:30:56 +08:00

16 lines
378 B
Nix

{ pkgs, ... }:
{
fonts.packages = with pkgs; [
inter nerd-fonts.iosevka nerd-fonts.symbols-only
nerd-fonts.fira-code nerd-fonts.jetbrains-mono
aporetic
];
fonts.fontconfig = {
defaultFonts = {
serif = [ "Liberation Serif" ];
sansSerif = [ "Inter" "SF Pro Display" ];
monospace = [ "Iosevka Nerd Font" "Symbols Nerd Font" ];
};
};
}