diff options
| author | Grigory Shipunov | 2023-01-17 20:58:09 +0100 |
|---|---|---|
| committer | Grigory Shipunov | 2023-01-17 20:58:09 +0100 |
| commit | c2123f2ef6ac899b19902c06bfe1f7e4c1a0d2b5 (patch) | |
| tree | def7d3094370d3a830704bd0111b0bcf317eac64 | |
| parent | 3ddfc838023dbbcd6eb89509b37baed80114e6d6 (diff) | |
try to match against name, so udev/iwd race doesn't affecrt networking
| -rw-r--r-- | hosts/dishwasher/configuration.nix | 2 | ||||
| -rw-r--r-- | hosts/toaster/network.nix | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/hosts/dishwasher/configuration.nix b/hosts/dishwasher/configuration.nix index ea0f151..4670b82 100644 --- a/hosts/dishwasher/configuration.nix +++ b/hosts/dishwasher/configuration.nix @@ -54,7 +54,7 @@ # }; }; networks."aer" = { - matchConfig.name = "wlan0"; + matchConfig.Name = "wlan0"; networkConfig = { DHCP = "yes"; }; diff --git a/hosts/toaster/network.nix b/hosts/toaster/network.nix index 239ee0e..018e9a3 100644 --- a/hosts/toaster/network.nix +++ b/hosts/toaster/network.nix @@ -46,7 +46,8 @@ }; }; networks."10-wlan-bond" = { - matchConfig.MACAddress = "04:7b:cb:2a:aa:8c"; + # matchConfig.MACAddress = "04:7b:cb:2a:aa:8c"; + matchConfig.Name = "wlan0"; networkConfig = { Bond = "james"; }; |
