You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
769 B
32 lines
769 B
{ lib, config, ... }:
|
|
|
|
let
|
|
mkFontOption = kind: {
|
|
family = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = null;
|
|
description = "Family name for ${kind} font profile";
|
|
example = "Fira Code";
|
|
};
|
|
package = lib.mkOption {
|
|
type = lib.types.package;
|
|
default = null;
|
|
description = "Package for ${kind} font profile";
|
|
example = "pkgs.fira-code";
|
|
};
|
|
};
|
|
cfg = config.fontProfiles;
|
|
in
|
|
{
|
|
options.fontProfiles = {
|
|
enable = lib.mkEnableOption "Whether to enable font profiles";
|
|
monospace = mkFontOption "monospace";
|
|
regular = mkFontOption "regular";
|
|
};
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
fonts.fontconfig.enable = true;
|
|
home.packages = [ cfg.monospace.package cfg.regular.package ];
|
|
};
|
|
}
|
|
|