diff options
| author | Grigory Shipunov | 2023-01-04 20:10:23 +0100 |
|---|---|---|
| committer | Grigory Shipunov | 2023-01-04 20:10:23 +0100 |
| commit | b0133d2389c445cf071bfab12c78d2e0d5a854e6 (patch) | |
| tree | e6d5cfbc5c7bce37b25cc26b3732ed8d3a3c7201 /hosts | |
| parent | 3bafe7c5e4b0ba2897adce61924bd72ea2f14871 (diff) | |
fix wait-network
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/dishwasher/configuration.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/dishwasher/configuration.nix b/hosts/dishwasher/configuration.nix index 5b4a138..ea0f151 100644 --- a/hosts/dishwasher/configuration.nix +++ b/hosts/dishwasher/configuration.nix @@ -26,10 +26,15 @@ time.timeZone = "Europe/Amsterdam"; + # fix wait-online target + systemd.services.systemd-networkd-wait-online.serviceConfig.ExecStart = [ + "" # clear old command + "${config.systemd.package}/lib/systemd/systemd-networkd-wait-online --any" + ]; + systemd.network = { enable = true; - wait-online.ignoredInterfaces = [ "wlp2s0" ]; networks."ether" = { matchConfig = { |
