This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
2022-12-30 13:05:46 +01:00

23 lines
393 B
Plaintext

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.extrafonts;
in {
options.features.extrafonts.enable = mkEnableOption "install additional fonts for desktop apps";
config = mkIf cfg.enable {
home.packages = with pkgs; [
fira-code
fira-code-symbols
font-manager
font-awesome
font-awesome_4
nerdfonts
noto-fonts
];
};
}