0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/ghostscript: evaporate the extra whitespace

This commit is contained in:
Sandro Jäckel 2023-07-19 13:43:54 +02:00
parent b0c67b4b6e
commit f9fdeb2dbc
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -3,12 +3,8 @@
with lib;
{
options = {
fonts = {
enableGhostscriptFonts = mkOption {
fonts.enableGhostscriptFonts = mkOption {
type = types.bool;
default = false;
description = lib.mdDoc ''
@ -21,13 +17,7 @@ with lib;
};
};
config = mkIf config.fonts.enableGhostscriptFonts {
fonts.packages = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
};
}