20 lines
324 B
Nix
20 lines
324 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
options.my.apps.fonts.enable = lib.mkEnableOption "enable";
|
|
config = lib.mkIf config.my.apps.fonts.enable {
|
|
users.users.jawz.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
nerdfonts
|
|
symbola
|
|
comic-neue
|
|
cascadia-code
|
|
;
|
|
};
|
|
};
|
|
}
|