nixos-config/sets/wifi.nix

10 lines
199 B
Nix
Raw Normal View History

2021-01-07 00:31:43 +00:00
{ pkgs, ... }:
2020-12-16 21:43:48 +00:00
{
networking.wireless.iwd.enable = true;
2021-01-07 00:31:43 +00:00
services.udev.packages = [ pkgs.crda ];
2020-12-16 21:43:48 +00:00
environment.etc."iwd/main.conf".text = ''
[General]
AddressRandomization=network
'';
}