diff options
author | tv <tv@krebsco.de> | 2021-11-22 15:44:14 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-11-22 15:44:14 +0100 |
commit | c95ee44d412e22866161de6521cea7808a3ea077 (patch) | |
tree | 923485a681543838ff55a016e38bfab25e037ba5 /tv | |
parent | e51e379342628dd3d01c15f91674e130466142a9 (diff) |
tv wu: make network configuration explicit
This silences warnings during deployment.
Diffstat (limited to 'tv')
-rw-r--r-- | tv/1systems/wu/config.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tv/1systems/wu/config.nix b/tv/1systems/wu/config.nix index f0ef6f9b0..bf250cefa 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; } |