nix-configurations/home/features/desktop/fonts.nix

23 lines
409 B
Nix
Raw Normal View History

2022-12-30 12:05:46 +00:00
{ 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; [
2023-02-01 11:38:23 +00:00
emacs-all-the-icons-fonts
2022-12-30 12:05:46 +00:00
fira-code
fira-code-symbols
font-manager
font-awesome
font-awesome_4
noto-fonts
];
};
}