mirror of
https://github.com/oqyude/nixos.git
synced 2026-08-08 23:53:11 +03:00
20 lines
282 B
Nix
20 lines
282 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
services.bentopdf = {
|
|
enable = true;
|
|
domain = "pdf.private";
|
|
nginx = {
|
|
enable = true;
|
|
# virtualHost = {
|
|
# forceSSL = true;
|
|
# enableACME = true;
|
|
# };
|
|
};
|
|
# package = pkgs-stable.bentopdf;
|
|
};
|
|
}
|