22 lines
377 B
Nix
22 lines
377 B
Nix
|
{ 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
|
||
|
noto-fonts
|
||
|
];
|
||
|
};
|
||
|
}
|