Files
nixos-blueprint/modules/nixos/config/networking/network-manager/default.nix
2025-05-04 18:12:28 +03:00

16 lines
247 B
Nix

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