HermitNix_DEPRECATED/Services/nextcloud.nix

17 lines
376 B
Nix
Raw Permalink Normal View History

2023-10-20 21:52:37 +00:00
{ config, pkgs, ... }:
{
services.nextcloud = {
enable = true;
package = pkgs.nextcloud27;
appstoreEnable = true;
hostName = "cloud.hermitcollective.net";
config.adminpassFile = "/etc/nextcloud-admin-pass";
https = true;
};
services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
forceSSL = true;
enableACME = true;
};
}