13 lines
214 B
Nix
13 lines
214 B
Nix
{...}: {
|
|
networking = {
|
|
networkmanager = {
|
|
enable = true;
|
|
dns = "default";
|
|
dhcp = "internal";
|
|
wifi = {
|
|
backend = "iwd";
|
|
macAddress = "preserve";
|
|
};
|
|
};
|
|
};
|
|
}
|