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 | 14b218d41942b70d75d61a72797c51d912794230 (patch) | |
tree | 81cc0e0f39eb56b082475eac62460d92845cb95b /tv/1systems/wu | |
parent | 980e8a52858c5a5ec55a6dca5934a754661373af (diff) |
tv wu: make network configuration explicit
This silences warnings during deployment.
Diffstat (limited to 'tv/1systems/wu')
-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 f0ef6f9..bf250ce 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; } |