16 lines
356 B
Nix
16 lines
356 B
Nix
{config, ...}: {
|
|
networking = {
|
|
networkmanager.wifi.backend =
|
|
if config.module.config.useIwd
|
|
then "iwd"
|
|
else "wpa_supplicant";
|
|
wireless.iwd = {
|
|
enable = config.module.config.useIwd;
|
|
settings = {
|
|
General.AddressRandomization = "network";
|
|
Settings.AlwaysRandomizeAddress = true;
|
|
};
|
|
};
|
|
};
|
|
}
|