25 lines
433 B
Nix
Raw Normal View History

2024-10-20 00:30:58 +02:00
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.desktop.fonts;
in {
options.features.desktop.fonts.enable =
mkEnableOption "install additional fonts for desktop apps";
config = mkIf cfg.enable {
home.packages = with pkgs; [
fira-code
fira-code-symbols
2024-12-10 09:50:56 +01:00
nerd-fonts.fira-code
2024-12-10 10:23:05 +01:00
nerd-fonts.jetbrains-mono
2024-10-20 00:30:58 +02:00
font-manager
font-awesome_5
noto-fonts
];
};
}