Monorepo for Tangled tangled.org
6

Configure Feed

Select the types of activity you want to include in your feed.

nix/modules: update knot systemd module to wait for network-online.target

it seems we have quite a few dns failures until we set this up.

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
committer
Tangled
date (May 25, 2026, 3:38 PM +0300) commit eb6bafbf parent e257ff49 change-id oxkroqlu
+2 -1
+2 -1
nix/modules/knot.nix
··· 228 228 229 229 systemd.services.knot = { 230 230 description = "knot service"; 231 - after = ["network.target" "sshd.service"]; 231 + after = ["network-online.target" "sshd.service"]; 232 + wants = ["network-online.target"]; 232 233 wantedBy = ["multi-user.target"]; 233 234 enableStrictShellChecks = true; 234 235