From 4319105aa5530cd8b32024022795e798889e3b31 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 5 May 2021 12:27:21 +0200 Subject: [PATCH] machines: aramis: networking: use wireless option --- machines/aramis/networking.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/machines/aramis/networking.nix b/machines/aramis/networking.nix index 3e0cb28..929b44d 100644 --- a/machines/aramis/networking.nix +++ b/machines/aramis/networking.nix @@ -4,8 +4,6 @@ hostName = "aramis"; domain = "nodomain.local"; # FIXME: gotta fix domain handling - networkmanager.enable = true; - # The global useDHCP flag is deprecated, therefore explicitly set to false here. # Per-interface useDHCP will be mandatory in the future, so this generated config # replicates the default behaviour. @@ -19,4 +17,7 @@ # Which interface is used to connect to the internet my.networking.externalInterface = "enp0s3"; + + # Enable WiFi integration + my.networking.wireless.enable = true; }