28 lines
563 B
Nix
28 lines
563 B
Nix
{ config, pkgs, inputs, ... }: {
|
|
services.nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud27;
|
|
hostName = "cloud.lelgenio.com";
|
|
https = true;
|
|
config = {
|
|
adminpassFile = config.age.secrets.phantom-nextcloud.path;
|
|
};
|
|
};
|
|
|
|
services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
};
|
|
|
|
age = {
|
|
secrets.phantom-nextcloud = {
|
|
file = ../../secrets/phantom-nextcloud.age;
|
|
mode = "400";
|
|
owner = "nextcloud";
|
|
group = "nextcloud";
|
|
};
|
|
};
|
|
|
|
}
|
|
|