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

24 lines
446 B
Nix
Raw Normal View History

2023-02-05 13:36:38 +00:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.desktop.extrafonts;
in {
options.features.desktop.extrafonts.enable = mkEnableOption "install additional fonts for desktop apps";
config = mkIf cfg.enable {
home.packages = with pkgs; [
emacs-all-the-icons-fonts
fira-code
fira-code-symbols
font-manager
font-awesome
font-awesome_4
2023-04-09 09:12:23 +00:00
font-awesome_5
2023-02-05 13:36:38 +00:00
noto-fonts
];
};
}