about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2023-07-15 10:53:44 +0200
committeraszlig <aszlig@nix.build>2023-07-15 10:53:44 +0200
commit65edc3644350ad1146d5ae6094eba91a38e5dd4b (patch)
treedabe61e88eb988a3fad67980b119d5ad414bf350 /modules
parentb9a7b3f0710ed828c9ec7562a6e641810fadd61b (diff)
workstation: Don't wait for all NICs to be online
I occasionally run wireguard setups, sometimes broken beyond repair, and
I really don't care whether those are online or not as long as *any*
interface is alive.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'modules')
-rw-r--r--modules/user/aszlig/profiles/workstation/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/user/aszlig/profiles/workstation/default.nix b/modules/user/aszlig/profiles/workstation/default.nix
index fb15bc13..7afba08d 100644
--- a/modules/user/aszlig/profiles/workstation/default.nix
+++ b/modules/user/aszlig/profiles/workstation/default.nix
@@ -142,6 +142,10 @@ in {
     location.latitude = 48.4284;
     location.longitude = 10.866;
 
+    # I occasionally run wg setups and I don't really care whether they're
+    # online or not.
+    systemd.network.wait-online.anyInterface = true;
+
     services = {
       openssh.enable = true;