dotfiles/modules/hardware/wifi.nix
2022-12-21 14:18:03 -07:00

14 lines
296 B
Nix

{ config, pkgs, lib, ... }: {
config = lib.mkIf (config.physical && config.isLinux) {
# Enables wireless support via wpa_supplicant.
networking.wireless.enable = true;
# Allows the user to control the WiFi settings.
networking.wireless.userControlled.enable = true;
};
}