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

ghostscript: add output fonts

This commit is contained in:
北雁 Cryolitia 2024-05-28 11:50:34 +08:00
parent 150a859d34
commit 93a9ca34fe
No known key found for this signature in database
GPG key ID: 3E5D1772FC8A8EDD
7 changed files with 10 additions and 8 deletions

View file

@ -18,6 +18,6 @@ with lib;
};
config = mkIf config.fonts.enableGhostscriptFonts {
fonts.packages = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
fonts.packages = [ pkgs.ghostscript.fonts ];
};
}