This commit is contained in:
Alejandro Angulo 2023-03-11 19:59:11 -08:00
parent 1231503914
commit c15ee0a39b
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
30 changed files with 703 additions and 118 deletions

View file

@ -0,0 +1,20 @@
{
options,
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.aa.desktop.addons.fonts;
in {
options.aa.desktop.addons.fonts = with types; {
enable = mkEnableOption "manage fonts";
};
config = mkIf cfg.enable {
fonts.fonts = with pkgs; [
(nerdfonts.override {fonts = ["Hack"];})
];
};
}