1 { config, lib, pkgs, ... }:
11 enableGhostscriptFonts = mkOption {
14 description = lib.mdDoc ''
15 Whether to add the fonts provided by Ghostscript (such as
16 various URW fonts and the “Base-14” Postscript fonts) to the
17 list of system fonts, making them available to X11
27 config = mkIf config.fonts.enableGhostscriptFonts {
29 fonts.fonts = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];