From 00c76355a0045084efc81f4ae9fbb522dc10cfb1 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Tue, 15 Jun 2021 08:59:14 -0400 Subject: [PATCH] Enable wireless networking on Acernitro host --- README.org | 3 +++ hosts/acernitro/configuration.nix | 2 ++ 2 files changed, 5 insertions(+) diff --git a/README.org b/README.org index 750f504..6d0ddb7 100644 --- a/README.org +++ b/README.org @@ -288,6 +288,7 @@ This configuration is nearly identical to the default, except for a few key diff + Applies the desired hostname + It adds support for =UEFI= systems + Uses an OS Prober to detect dual-boot ++ Enables support for wireless networking #+BEGIN_SRC nix :noweb yes :tangle hosts/acernitro/configuration.nix # <> @@ -306,6 +307,8 @@ This configuration is nearly identical to the default, except for a few key diff networking.useDHCP = false; networking.firewall.enable = false; networking.interfaces.ens3.useDHCP = true; + networking.wireless.enable = true; + networking.wireless.userControlled.enable = true; programs.mtr.enable = true; programs.fish.enable = true; diff --git a/hosts/acernitro/configuration.nix b/hosts/acernitro/configuration.nix index 980423e..a7929e5 100644 --- a/hosts/acernitro/configuration.nix +++ b/hosts/acernitro/configuration.nix @@ -14,6 +14,8 @@ networking.useDHCP = false; networking.firewall.enable = false; networking.interfaces.ens3.useDHCP = true; + networking.wireless.enable = true; + networking.wireless.userControlled.enable = true; programs.mtr.enable = true; programs.fish.enable = true;