diff options
author | Linnnus <[email protected]> | 2025-03-25 12:06:52 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-03-25 12:06:52 +0100 |
commit | e89fa203c3f11a93fe8805e911744b3b8a049973 (patch) | |
tree | 1c2d2b145c69bc9be9214ffb21d403a44cc79931 /hosts/omar/wireless-networking/default.nix | |
parent | 7f8c32c8295610ec7e5b8e387ea52cfa88250496 (diff) |
Remove omar
Diffstat (limited to 'hosts/omar/wireless-networking/default.nix')
-rw-r--r-- | hosts/omar/wireless-networking/default.nix | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/hosts/omar/wireless-networking/default.nix b/hosts/omar/wireless-networking/default.nix deleted file mode 100644 index fa6a036..0000000 --- a/hosts/omar/wireless-networking/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -# This module configures wireless networking using WPA. -{...}: { - # Enables wireless support via wpa_supplicant. - networking.wireless.enable = true; - - # wpa_supplicant needs a configuration file. That file contains plaintext - # passwords and should NOT be added to the configuration. Instead, let's - # store it persistently. - # - # I created that file with the following commands: - # mkdir -p /persist/etc/ - # echo '# Allow frontend (e.g. wpa_cli) to be used by all users in 'wheel' group. - # ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel' >/persist/etc/wpa_supplicant.conf - # And then I added the network={} blocks for the networks I know. - environment.etc."wpa_supplicant.conf".source = "/persist/etc/wpa_supplicant.conf"; -} |