nix/modules/nixos/wifi.nix

10 lines
326 B
Nix
Raw Normal View History

2023-10-06 20:11:44 -05:00
{lib, ...}: {
networking.networkmanager.enable = lib.mkDefault true;
systemd.services.NetworkManager-wait-online.enable = lib.mkDefault false;
# TODO: networking.networkmanager.wifi.backend = "iwd"; ?
2023-09-05 23:11:14 -05:00
2023-10-05 10:41:31 -05:00
# TODO: powersave?
# TODO: can I pre-configure my usual wifi networks with SSIDs and PSKs loaded from secrets?
2023-09-05 23:11:14 -05:00
}