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