infrastructure/nixos-configurations/lindberg-nextcloud/applications/cloud.nix
Fabian Hauser d437be7246
All checks were successful
CI / build (push) Successful in 2m56s
cloud.qo.is: Upgrade nextcloud to 30
2024-11-13 14:34:40 +02:00

21 lines
374 B
Nix

{ config, pkgs, ... }:
let
host = "cloud.qo.is";
in
{
imports = [ ../../../defaults/nextcloud ];
qois.postgresql.enable = true;
services.nextcloud = {
hostName = host;
package = pkgs.nextcloud30;
settings.default_phone_region = "CH";
};
services.nginx.virtualHosts."${host}" = {
forceSSL = true;
enableACME = true;
kTLS = true;
};
}