diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2024-10-02 22:07:10 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2024-10-02 22:07:10 -0500 |
commit | 4730b215fdc4095800fedfdf690c12fec994bb6b (patch) | |
tree | 3c746ece0089625a8093d4ae6bf1149ea903b7dc /modules/wifi.nix | |
parent | 34b0bb8df42194a0ea433592e3cac27546f0af4e (diff) | |
download | nixos-4730b215fdc4095800fedfdf690c12fec994bb6b.tar.xz nixos-4730b215fdc4095800fedfdf690c12fec994bb6b.zip |
more reorganizing and modularizing
Diffstat (limited to 'modules/wifi.nix')
-rw-r--r-- | modules/wifi.nix | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/wifi.nix b/modules/wifi.nix deleted file mode 100644 index 54f9089..0000000 --- a/modules/wifi.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ pkgs, lib, config, ... }: { - options = { - wifi.enable = lib.mkEnableOption "enables wifi"; - }; - - config = lib.mkIf config.wifi.enable { - # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. - }; -} |