Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 2m15s
15 lines
No EOL
348 B
Nix
15 lines
No EOL
348 B
Nix
{ homelab, ... }: let
|
|
domain = "docs.${homelab.domain}";
|
|
in {
|
|
services.cryptpad = {
|
|
enable = true;
|
|
settings = {
|
|
httpPort = 7090;
|
|
websocketPort = 7080;
|
|
httpUnsafeOrigin = "https://${domain}";
|
|
httpSafeOrigin = "https://${domain}";
|
|
blockDailyCheck = true;
|
|
disableIntegratedEviction = true;
|
|
};
|
|
};
|
|
} |