Fixed broken icons

This commit is contained in:
Alejandro Angulo 2023-05-27 19:25:52 -07:00
parent a419c28d0d
commit 27f215f02c
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
6 changed files with 10 additions and 13 deletions

View file

@ -0,0 +1,20 @@
{
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.fonts = with pkgs; [
(nerdfonts.override {fonts = ["Hack"];})
];
};
}