2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-06-27 13:12:45 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2013-06-27 13:12:45 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
|
|
|
|
enableGhostscriptFonts = mkOption {
|
|
|
|
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 {
|
|
|
|
|
2014-04-29 12:25:47 +02:00
|
|
|
fonts.fonts = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
|
2013-06-27 13:12:45 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|