1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

nixos/stirling-pdf: init module

This commit is contained in:
DCsunset 2024-07-25 20:47:56 -04:00
parent 9cb99744c3
commit 05113f61f0
2 changed files with 111 additions and 0 deletions

View file

@ -1468,6 +1468,7 @@
./services/web-apps/slskd.nix
./services/web-apps/snipe-it.nix
./services/web-apps/sogo.nix
./services/web-apps/stirling-pdf.nix
./services/web-apps/trilium.nix
./services/web-apps/tt-rss.nix
./services/web-apps/vikunja.nix

View file

@ -0,0 +1,110 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.stirling-pdf;
in
{
options.services.stirling-pdf = {
enable = lib.mkEnableOption "the stirling-pdf service";
package = lib.mkPackageOption pkgs "stirling-pdf" { };
environment = lib.mkOption {
type = lib.types.attrsOf (
lib.types.oneOf [
lib.types.str
lib.types.int
]
);
default = { };
example = {
SERVER_PORT = 8080;
INSTALL_BOOK_AND_ADVANCED_HTML_OPS = "true";
};
description = ''
Environment variables for the stirling-pdf app.
See https://github.com/Stirling-Tools/Stirling-PDF#customisation for available options.
'';
};
environmentFiles = lib.mkOption {
type = lib.types.listOf lib.types.path;
default = [ ];
description = ''
Files containing additional environment variables to pass to Stirling PDF.
Secrets should be added in environmentFiles instead of environment.
'';
};
};
config = lib.mkIf cfg.enable {
systemd.services.stirling-pdf = {
environment = lib.mapAttrs (_: toString) cfg.environment;
# following https://github.com/Stirling-Tools/Stirling-PDF#locally
path = with pkgs; [
unpaper
libreoffice
ocrmypdf
poppler_utils
unoconv
opencv
pngquant
tesseract
python3Packages.weasyprint
calibre
];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
BindReadOnlyPaths = [ "${pkgs.tesseract}/share/tessdata:/usr/share/tessdata" ];
CacheDirectory = "stirling-pdf";
Environment = [ "HOME=%S/stirling-pdf" ];
EnvironmentFile = cfg.environmentFiles;
ExecStart = lib.getExe cfg.package;
RuntimeDirectory = "stirling-pdf";
StateDirectory = "stirling-pdf";
SuccessExitStatus = 143;
User = "stirling-pdf";
WorkingDirectory = "/var/lib/stirling-pdf";
# Hardening
CapabilityBoundingSet = "";
DynamicUser = true;
LockPersonality = true;
NoNewPrivileges = true;
PrivateDevices = true;
PrivateUsers = true;
ProcSubset = "pid";
ProtectClock = true;
ProtectControlGroups = true;
ProtectHome = true;
ProtectHostname = true;
ProtectKernelLogs = true;
ProtectKernelModules = true;
ProtectKernelTunables = true;
ProtectProc = "invisible";
RestrictAddressFamilies = [
"AF_INET"
"AF_INET6"
"AF_UNIX"
];
RestrictNamespaces = true;
RestrictRealtime = true;
SystemCallArchitectures = "native";
SystemCallFilter = [
"~@cpu-emulation @debug @keyring @mount @obsolete @privileged @resources @clock @setuid @chown"
];
UMask = "0077";
};
};
};
meta.maintainers = with lib.maintainers; [ DCsunset ];
}