nixos-images/nix/image-installer/wifi.nix
Jörg Thalheim 8d35d4a180 add image-installer
add image-installer
2024-04-17 11:56:46 +02:00

17 lines
382 B
Nix

{
imports = [ ../networkd.nix ];
# use iwd instead of wpa_supplicant
networking.wireless.enable = false;
# Use iwd instead of wpa_supplicant. It has a user friendly CLI
networking.wireless.iwd = {
enable = true;
settings = {
Network = {
EnableIPv6 = true;
RoutePriorityOffset = 300;
};
Settings.AutoConnect = true;
};
};
}