16 lines
247 B
Nix
16 lines
247 B
Nix
{
|
|
imports = [
|
|
./wireless-iwd.nix
|
|
];
|
|
networking = {
|
|
networkmanager = {
|
|
enable = true;
|
|
ethernet.macAddress = "stable";
|
|
wifi = {
|
|
macAddress = "random";
|
|
scanRandMacAddress = true;
|
|
};
|
|
};
|
|
};
|
|
}
|