1 { config, lib, pkgs, ... }:
4 fonts.enableGhostscriptFonts = lib.mkOption {
8 Whether to add the fonts provided by Ghostscript (such as
9 various URW fonts and the “Base-14” Postscript fonts) to the
10 list of system fonts, making them available to X11
17 config = lib.mkIf config.fonts.enableGhostscriptFonts {
18 fonts.packages = [ pkgs.ghostscript.fonts ];