32 lines
569 B
Nix
32 lines
569 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
services.nextcloud = {
|
|
enable = true;
|
|
package = pkgs.nextcloud29;
|
|
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";
|
|
};
|
|
};
|
|
}
|