ma hw/network-manager: use iwd

This commit is contained in:
makefu 2020-01-10 08:41:33 +01:00
parent dddc3e4f6f
commit 6cbfc2514f
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
1 changed files with 5 additions and 1 deletions

View File

@ -20,13 +20,17 @@
RestartSec = "5";
};
};
networking.networkmanager.enable = true;
# nixOSUnstable
networking.networkmanager.enable = true;
networking.networkmanager.wifi = {
powersave = true;
scanRandMacAddress = true;
backend = "iwd";
};
services.gnome3.gnome-keyring.enable = true;
networking.wireless.iwd.enable = true;
state = [
"/etc/NetworkManager/system-connections" #NM stateful config files
];