alejandro-angulo
33c866daff
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
24 lines
350 B
Nix
24 lines
350 B
Nix
{
|
|
options,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.aa.system.fonts;
|
|
in {
|
|
options.aa.system.fonts = with types; {
|
|
enable = mkEnableOption "manage fonts";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
nerd-fonts.hack
|
|
];
|
|
};
|
|
}
|