vps-private: Switch completely to nebula

This commit is contained in:
SebastianStork 2026-01-10 23:25:13 +01:00
parent 116b4437fe
commit b7a2598ebe
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
5 changed files with 17 additions and 18 deletions

View file

@ -59,7 +59,7 @@ in
message = "Running syncthing on a server requires `gui.domain` to be set";
}
{
assertion = (cfg.gui.domain != null) -> (lib'.isTailscaleDomain cfg.gui.domain);
assertion = (cfg.gui.domain != null) -> (lib'.isPrivateDomain cfg.gui.domain);
message = lib'.mkUnprotectedMessage "Syncthing-GUI";
}
];

View file

@ -27,7 +27,7 @@ in
config = lib.mkIf cfg.enable {
assertions = lib.singleton {
assertion = lib'.isTailscaleDomain cfg.domain;
assertion = lib'.isPrivateDomain cfg.domain;
message = lib'.mkUnprotectedMessage "Filebrowser";
};

View file

@ -25,7 +25,7 @@ in
config = lib.mkIf cfg.enable {
assertions = lib.singleton {
assertion = lib'.isTailscaleDomain cfg.domain;
assertion = lib'.isPrivateDomain cfg.domain;
message = lib'.mkUnprotectedMessage "FreshRSS";
};