summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2021-11-22 15:44:14 +0100
committertv <tv@krebsco.de>2021-11-22 15:44:14 +0100
commitc95ee44d412e22866161de6521cea7808a3ea077 (patch)
tree923485a681543838ff55a016e38bfab25e037ba5
parente51e379342628dd3d01c15f91674e130466142a9 (diff)
tv wu: make network configuration explicit
This silences warnings during deployment.
-rw-r--r--tv/1systems/wu/config.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/tv/1systems/wu/config.nix b/tv/1systems/wu/config.nix
index f0ef6f9b..bf250cef 100644
--- a/tv/1systems/wu/config.nix
+++ b/tv/1systems/wu/config.nix
@@ -33,5 +33,11 @@ with import <stockholm/lib>;
};
networking.wireless.enable = true;
+ networking.wireless.interfaces = [
+ "wlp3s0"
+ ];
+ networking.interfaces.enp4s0f2.useDHCP = true;
+ networking.interfaces.wlp3s0.useDHCP = true;
+ networking.useDHCP = false;
}