blob: afc87718a4db8d409cc88913c0f866c5c15072df (
plain) (
tree)
|
|
{
config,
pkgs,
...
}: let
nerdFont = pkgs.nerdfonts.override {
fonts = [
"SourceCodePro"
];
};
in {
# TODO maybe add other fonts?
fonts = {
packages = [
nerdFont
];
fontconfig = {
defaultFonts = {
# serif = ["Vazir"];
# sansSerif = ["Vazir"];
monospace = ["SourceCodePro"];
};
};
};
}
|