fix
This commit is contained in:
@@ -17,17 +17,17 @@ let
|
||||
|
||||
services = pkgs.writers.writeYAML "services.yaml" {
|
||||
media = []
|
||||
++ (if (serverCfg.containers.jellyfin) then [{
|
||||
++ (if (serverCfg.containers?jellyfin) then [{
|
||||
icon = "jellyfin.png";
|
||||
href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}";
|
||||
}] else []);
|
||||
dev = []
|
||||
++ (if (serverCfg.containers.gitea) then [{
|
||||
++ (if (serverCfg.containers?gitea) then [{
|
||||
icon = "gitea.png";
|
||||
href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}";
|
||||
}] else []);
|
||||
cloud = []
|
||||
++ (if (serverCfg.containers.nextcloud) then [{
|
||||
++ (if (serverCfg.containers?nextcloud) then [{
|
||||
icon = "nextcloud.png";
|
||||
href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}";
|
||||
}] else []);
|
||||
|
||||
Reference in New Issue
Block a user