You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
568 B
32 lines
568 B
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
|
|
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 {
|
|
|
|
fonts.extraFonts = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
|
|
|
|
};
|
|
|
|
}
|