dotfiles/modules/system/fonts/default.nix

21 lines
311 B
Nix
Raw Normal View History

2023-03-12 03:59:11 +00:00
{
options,
config,
pkgs,
lib,
...
}:
with lib; let
2023-05-28 02:25:52 +00:00
cfg = config.aa.system.fonts;
2023-03-12 03:59:11 +00:00
in {
2023-05-28 02:25:52 +00:00
options.aa.system.fonts = with types; {
2023-03-12 03:59:11 +00:00
enable = mkEnableOption "manage fonts";
};
config = mkIf cfg.enable {
fonts.fonts = with pkgs; [
(nerdfonts.override {fonts = ["Hack"];})
];
};
}