Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.2 KiB
Nix
55 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 = "List of primary font packages.";
|
|
};
|
|
|
|
enableDefaultPackages = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
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
|
|
]
|
|
);
|
|
};
|
|
}
|