fix
This commit is contained in:
@@ -15,18 +15,18 @@ let
|
|||||||
# };
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
services = pkgs.writers.writeYAML "services.yaml" {[
|
services = pkgs.writers.writeYAML "services.yaml" [
|
||||||
{Media = [{
|
{Media = [
|
||||||
} // lib.optionalAttrs (serverCfg.containers?jellyfin) {
|
{} // lib.optionalAttrs (serverCfg.containers?jellyfin) {
|
||||||
"Jellyfin"={
|
Jellyfin={
|
||||||
icon = "jellyfin.png";
|
icon = "jellyfin.png";
|
||||||
href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}";
|
href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];}
|
];}
|
||||||
{Dev = [{
|
{Dev = [
|
||||||
} // lib.optionalAttrs (serverCfg.containers?gitea) {
|
{} // lib.optionalAttrs (serverCfg.containers?gitea) {
|
||||||
"Gitea"={
|
Gitea={
|
||||||
icon = "gitea.png";
|
icon = "gitea.png";
|
||||||
href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}";
|
href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}";
|
||||||
};
|
};
|
||||||
@@ -37,7 +37,7 @@ let
|
|||||||
# icon = "nextcloud.png";
|
# icon = "nextcloud.png";
|
||||||
# href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}";
|
# href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}";
|
||||||
# }] else []);
|
# }] else []);
|
||||||
]};
|
];
|
||||||
in {
|
in {
|
||||||
sops = false;
|
sops = false;
|
||||||
db = false;
|
db = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user