25 lines
487 B
Nix
25 lines
487 B
Nix
|
|
# Font packages — Fira Code, JetBrains Mono Nerd Font, and supporting icon fonts.
|
||
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
with lib; let
|
||
|
|
cfg = config.desktop.theme.fonts;
|
||
|
|
in {
|
||
|
|
options.desktop.theme.fonts.enable = mkEnableOption "install desktop fonts";
|
||
|
|
|
||
|
|
config = mkIf cfg.enable {
|
||
|
|
home.packages = with pkgs; [
|
||
|
|
fira-code
|
||
|
|
fira-code-symbols
|
||
|
|
nerd-fonts.fira-code
|
||
|
|
nerd-fonts.jetbrains-mono
|
||
|
|
font-manager
|
||
|
|
font-awesome_5
|
||
|
|
noto-fonts
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|