nixos/dafoe/services/nextcloud.nix
Leon Vatthauer 61ca79dbd1
Revert
This reverts commit 1219865a7f.
2024-06-17 17:32:13 +02:00

15 lines
386 B
Nix

{ pkgs, ... }:
{
services.nextcloud = {
enable = true;
package = pkgs.nextcloud29;
hostName = "cloud.vatthauer.xyz";
https = true;
config.adminuser = "admin";
config.adminpassFile = "${../../nix-secrets/dafoe/nextcloud/adminpass}";
configureRedis = true;
maxUploadSize = "1G";
#nginx.enable = true;
settings.overwriteProtocol = "https";
};
}