c7423cd734
Clarify that the monochrome font is not included, per #221181. The new name is also coherent with the name of the font, according to `fontconfig`: Noto Color Emoji.
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.fonts;
|
|
in
|
|
{
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "fonts" "enableCoreFonts" ] "Use fonts.packages = [ pkgs.corefonts ]; instead.")
|
|
(lib.mkRenamedOptionModule [ "fonts" "enableDefaultFonts" ] [ "fonts" "enableDefaultPackages" ])
|
|
(lib.mkRenamedOptionModule [ "fonts" "fonts" ] [ "fonts" "packages" ])
|
|
];
|
|
|
|
options = {
|
|
fonts = {
|
|
packages = lib.mkOption {
|
|
type = with lib.types; listOf path;
|
|
default = [];
|
|
example = lib.literalExpression "[ pkgs.dejavu_fonts ]";
|
|
description = lib.mdDoc "List of primary font packages.";
|
|
};
|
|
|
|
enableDefaultPackages = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Enable a basic set of fonts providing several styles
|
|
and families and reasonable coverage of Unicode.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = {
|
|
fonts.packages = lib.mkIf cfg.enableDefaultPackages (with pkgs; [
|
|
dejavu_fonts
|
|
freefont_ttf
|
|
gyre-fonts # TrueType substitutes for standard PostScript fonts
|
|
liberation_ttf
|
|
unifont
|
|
noto-fonts-color-emoji
|
|
]);
|
|
};
|
|
}
|