fix(cluster): make sure headscale has IP

This commit is contained in:
matt1432 2024-01-26 22:23:29 -05:00
parent 91d2b7cedb
commit 43db5323dc
2 changed files with 6 additions and 6 deletions
devices/cluster/modules

View file

@ -40,19 +40,19 @@ in {
"unbound" = {
enable = true;
group = "caddy-grp";
startAfter = ["caddy"];
startAfter = ["caddy-vip"];
};
"blocky" = {
enable = true;
group = "caddy-grp";
startAfter = ["unbound"];
startAfter = ["caddy-vip"];
};
"headscale" = {
enable = true;
group = "caddy-grp";
startAfter = ["blocky"];
startAfter = ["caddy-vip"];
};
};