Fix iwd config

This commit is contained in:
Artemis Tosini 2021-11-20 05:15:37 +00:00
parent b1f0751105
commit f122cee43c
Signed by: artemist
GPG key ID: ADFFE553DCBB831E
2 changed files with 4 additions and 6 deletions

@ -1 +0,0 @@
Subproject commit 0b47ded208a6ed24f40b9d62379d04fe8dc4f63e

View file

@ -1,9 +1,8 @@
{ pkgs, ... }:
{
networking.wireless.iwd.enable = true;
services.udev.packages = [ pkgs.crda ];
environment.etc."iwd/main.conf".text = ''
[General]
AddressRandomization=network
'';
networking.wireless.iwd = {
enable = true;
settings.General.AddressRandomization = "network";
};
}