configuration.nix/hosts/skipper/network.nix

33 lines
541 B
Nix
Raw Normal View History

2023-07-20 20:40:19 +05:30
_: {
networking = {
hostName = "Skipper";
wireless.iwd = {
enable = true;
settings = {
General = {
AddressRandomization = "network";
};
Settings = {
AutoConnect = true;
};
};
};
};
systemd.network = {
enable = true;
networks.wifi = {
enable = true;
matchConfig = {
Name = "wlan0";
};
networkConfig = {
DHCP = "yes";
};
linkConfig = {
RequiredForOnline = "yes";
};
};
};
}