13 lines
340 B
Nix
13 lines
340 B
Nix
|
{
|
||
|
services.nextcloud = {
|
||
|
enable = true;
|
||
|
autoUpdateApps.enable = true;
|
||
|
config.adminpassFile = toString <secrets/nextcloud/rootpassword>;
|
||
|
#home = "/home/nextcloud";
|
||
|
nginx.enable = true;
|
||
|
hostName = "nextcloud.workhorse.private";
|
||
|
logLevel = 0;
|
||
|
config.extraTrustedDomains = [ "nextcloud.gaykraft.com" ];
|
||
|
};
|
||
|
}
|