fix nulls

This commit is contained in:
soraefir
2026-05-08 20:59:40 +02:00
parent e2b688c836
commit d898116ff4
4 changed files with 10 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ in {
"--tmpfs /tmp:rw,mode=1777"
];
overrides = {
ports = if containerCfg.pubPort != 0 && containerCfg.port != 0 then [ "${toString containerCfg.pubPort}:${toString containerCfg.port}" ] else [];
ports = if containerCfg.pubPort && containerCfg.port then [ "${toString containerCfg.pubPort}:${toString containerCfg.port}" ] else [];
volumes = [
"${serverCfg.dataPath}/nextcloud/www:/var/www/html"
"${serverCfg.dataPath}/nextcloud/data:/var/www/html/data"