f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
23 lines
527 B
Nix
23 lines
527 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options = {
|
|
fonts.enableGhostscriptFonts = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to add the fonts provided by Ghostscript (such as
|
|
various URW fonts and the “Base-14” Postscript fonts) to the
|
|
list of system fonts, making them available to X11
|
|
applications.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf config.fonts.enableGhostscriptFonts {
|
|
fonts.packages = [ pkgs.ghostscript.fonts ];
|
|
};
|
|
}
|