configuration.nix/hosts/skipper/network.nix

61 lines
1.2 KiB
Nix
Raw Normal View History

2023-07-20 23:33:31 +05:30
{lib, ...}: {
2023-07-20 20:40:19 +05:30
networking = {
hostName = "Skipper";
2023-07-20 23:33:31 +05:30
useDHCP = lib.mkDefault false;
2023-07-20 20:40:19 +05:30
wireless.iwd = {
enable = true;
settings = {
General = {
AddressRandomization = "network";
2023-07-20 23:36:49 +05:30
EnableNetworkConfiguration = false;
2023-07-20 20:40:19 +05:30
};
Settings = {
2023-07-20 23:36:49 +05:30
AutoConnect = "yes";
2023-07-20 20:40:19 +05:30
};
};
};
};
2023-08-12 18:55:40 +05:30
services.resolved.enable = true;
2023-07-20 20:40:19 +05:30
systemd.network = {
enable = true;
2023-07-21 00:36:32 +05:30
networks = {
2023-08-19 23:40:39 +05:30
"41-ether" = {
enable = true;
matchConfig = {
Type = "ether";
};
networkConfig = {
DHCP = "yes";
};
dhcpV4Config = {
UseDomains = true;
};
ipv6AcceptRAConfig = {
UseDomains = true;
};
};
2023-07-21 00:36:32 +05:30
"40-wireless" = {
enable = true;
matchConfig = {
Type = "wlan";
};
networkConfig = {
DHCP = "yes";
IgnoreCarrierLoss = "3s";
};
2023-07-24 12:18:09 +05:30
dhcpV4Config = {
2023-08-12 18:55:52 +05:30
UseDomains = true;
2023-07-24 12:18:09 +05:30
};
ipv6AcceptRAConfig = {
2023-08-12 18:55:52 +05:30
UseDomains = true;
2023-07-24 12:18:09 +05:30
};
2023-07-21 00:36:32 +05:30
linkConfig = {
RequiredForOnline = "yes";
};
2023-07-20 20:40:19 +05:30
};
};
};
}