nix-deploy/config/hosts/rudiger/services/nextcloud.nix

21 lines
533 B
Nix
Raw Normal View History

2021-09-27 14:55:55 +02:00
{ config, pkgs, ... }:
{
services.nextcloud = {
enable = true;
hostName = "cloud.graven.dev";
2021-09-27 15:50:37 +02:00
https = true;
2021-09-27 14:55:55 +02:00
package = pkgs.nextcloud22;
autoUpdateApps.enable = true;
maxUploadSize = "10G";
webfinger = true;
config = {
dbtype = "pgsql";
dbuser = "nextcloud";
dbhost = "/run/postgresql"; # nextcloud will add /.s.PGSQL.5432 by itself
dbname = "nextcloud";
adminpassFile = builtins.toString config.secrets.files.nc_admin_pass.file;
adminuser = "root";
};
};
}