dotfiles/modules/nixos/system/fonts/default.nix
alejandro-angulo 33c866daff
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
Updated lockfile
2024-12-02 17:50:30 -08:00

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
];
};
}