diff options
| author | Baitinq <[email protected]> | 2025-08-12 00:36:36 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-08-12 00:36:36 +0200 |
| commit | a22a8ee8b684e8e19cbc12e1d325bcd6e64e7046 (patch) | |
| tree | c7f11d7878d99390b92c89813c2aecf5c74e5956 /hosts/configuration.nix | |
| parent | Home: Install gemini cli (diff) | |
| download | nixos-config-a22a8ee8b684e8e19cbc12e1d325bcd6e64e7046.tar.gz nixos-config-a22a8ee8b684e8e19cbc12e1d325bcd6e64e7046.tar.bz2 nixos-config-a22a8ee8b684e8e19cbc12e1d325bcd6e64e7046.zip | |
Hosts: Enable wifi for all hosts
Diffstat (limited to 'hosts/configuration.nix')
| -rw-r--r-- | hosts/configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 6cf35f2..740d223 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -61,6 +61,10 @@ # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. }; + wireless = { + enable = true; # Enables wireless support via wpa_supplicant. + networks = secrets.wifi_networks; + }; }; # Select internationalisation properties. |