Browse Source

Enable wireless networking on Acernitro host

main
parent
commit
00c76355a0
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 3
      README.org
  2. 2
      hosts/acernitro/configuration.nix

3
README.org

@ -288,6 +288,7 @@ This configuration is nearly identical to the default, except for a few key diff
+ Applies the desired hostname + Applies the desired hostname
+ It adds support for =UEFI= systems + It adds support for =UEFI= systems
+ Uses an OS Prober to detect dual-boot + Uses an OS Prober to detect dual-boot
+ Enables support for wireless networking
#+BEGIN_SRC nix :noweb yes :tangle hosts/acernitro/configuration.nix #+BEGIN_SRC nix :noweb yes :tangle hosts/acernitro/configuration.nix
# <<file-warning>> # <<file-warning>>
@ -306,6 +307,8 @@ This configuration is nearly identical to the default, except for a few key diff
networking.useDHCP = false; networking.useDHCP = false;
networking.firewall.enable = false; networking.firewall.enable = false;
networking.interfaces.ens3.useDHCP = true; networking.interfaces.ens3.useDHCP = true;
networking.wireless.enable = true;
networking.wireless.userControlled.enable = true;
programs.mtr.enable = true; programs.mtr.enable = true;
programs.fish.enable = true; programs.fish.enable = true;

2
hosts/acernitro/configuration.nix

@ -14,6 +14,8 @@
networking.useDHCP = false; networking.useDHCP = false;
networking.firewall.enable = false; networking.firewall.enable = false;
networking.interfaces.ens3.useDHCP = true; networking.interfaces.ens3.useDHCP = true;
networking.wireless.enable = true;
networking.wireless.userControlled.enable = true;
programs.mtr.enable = true; programs.mtr.enable = true;
programs.fish.enable = true; programs.fish.enable = true;

Loading…
Cancel
Save