Skip to content

Commit

Permalink
wireguard: don't require wg0 to be up for network-wait-online to comp…
Browse files Browse the repository at this point in the history
…lete
  • Loading branch information
delroth committed Jan 25, 2024
1 parent d42ce56 commit 7c0fc62
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/wireguard.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,9 @@ in lib.mkMerge [
})
) (peerable config.networking.hostName);
};

# networkd-wait-online sometimes fails to notice that the interface is up,
# since it's not managing it.
systemd.network.wait-online.ignoredInterfaces = [ "wg0" ];
}
]

0 comments on commit 7c0fc62

Please sign in to comment.