2023-05-19 11:42:43 +02:00
|
|
|
{ config, pkgs, ... }:
|
2023-01-24 11:58:36 +01:00
|
|
|
let
|
|
|
|
domain = "nextcloud.rfive.de";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
sops.secrets = {
|
|
|
|
"nextcloud/adminpass" = {
|
|
|
|
owner = "nextcloud";
|
|
|
|
group = "nextcloud";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services = {
|
|
|
|
postgresql = {
|
|
|
|
enable = true;
|
|
|
|
ensureUsers = [
|
|
|
|
{
|
|
|
|
name = "nextcloud";
|
|
|
|
ensurePermissions = {
|
|
|
|
"DATABASE nextcloud" = "ALL PRIVILEGES";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
ensureDatabases = [ "nextcloud" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nextcloud = {
|
|
|
|
enable = true;
|
2023-06-19 10:37:17 +02:00
|
|
|
package = pkgs.nextcloud27; # Use current latest nextcloud package
|
2023-01-24 11:58:36 +01:00
|
|
|
hostName = "${domain}";
|
|
|
|
https = true; # Use https for all urls
|
|
|
|
config = {
|
|
|
|
dbtype = "pgsql";
|
|
|
|
dbuser = "nextcloud";
|
|
|
|
dbhost = "/run/postgresql";
|
|
|
|
dbname = "nextcloud";
|
|
|
|
adminpassFile = config.sops.secrets."nextcloud/adminpass".path;
|
2023-01-24 12:39:53 +01:00
|
|
|
adminuser = "rouven";
|
2023-01-24 11:58:36 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# Enable ACME and force SSL
|
|
|
|
nginx = {
|
|
|
|
recommendedProxySettings = true;
|
|
|
|
virtualHosts = {
|
|
|
|
"${domain}" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# ensure that postgres is running *before* running the setup
|
|
|
|
systemd.services."nextcloud-setup" = {
|
|
|
|
requires = [ "postgresql.service" ];
|
|
|
|
after = [ "postgresql.service" ];
|
|
|
|
};
|
|
|
|
}
|