blob: f1cad225a267d5773dfa09bb22a0e8fc5cf3aa85 (
plain) (
tree)
|
|
{ config, lib, pkgs, ...} : with lib; {
options.santi-modules.font-config.enable = mkOption {
type = types.bool;
default = true;
description = "Installs default fonts.";
};
config = mkIf config.santi-modules.font-config.enable {
fonts = {
fontconfig = {
enable = true;
defaultFonts = {
monospace = [ "Iosevka" "IPAGothic" ];
serif = [ "DejaVu Serif" "IPAPMincho" ];
};
};
packages = with pkgs; [
nerd-fonts.iosevka
nerd-fonts.fira-code
ipafont
kochi-substitute
dejavu_fonts
];
};
};
}
|