mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
18 lines
343 B
Nix
18 lines
343 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
config = lib.mkIf (config.physical && pkgs.stdenv.isLinux) {
|
|
|
|
# Enables wireless support via wpa_supplicant.
|
|
networking.wireless.enable = !config.networking.networkmanager.enable;
|
|
|
|
# Allows the user to control the WiFi settings.
|
|
networking.wireless.userControlled.enable = true;
|
|
};
|
|
}
|