vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / config / fonts / ghostscript.nix
blobdd28c72bba76e793fb8305e540fa84864787cfea
1 { config, lib, pkgs, ... }:
3   options = {
4     fonts.enableGhostscriptFonts = lib.mkOption {
5       type = lib.types.bool;
6       default = false;
7       description = ''
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
11         applications.
12       '';
13     };
15   };
17   config = lib.mkIf config.fonts.enableGhostscriptFonts {
18     fonts.packages = [ pkgs.ghostscript.fonts ];
19   };