1

Add nextcloud service

This commit is contained in:
2023-09-10 11:24:59 +02:00
parent 5f0895c541
commit ad0b709537

View File

@ -0,0 +1,32 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.netflix = {
image = "linuxserver/nextcloud:latest";
autoStart = true;
dependsOn = [
"pihole"
];
ports = [
"443:443"
];
volumes = [
"nextcloud_config:/config"
"nextcloud_data:/data"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [];
};
}