nixos/modules/networking.nix

10 lines
207 B
Nix
Raw Normal View History

2024-03-26 19:51:35 -08:00
{ config, lib, pkgs, ... }:
{
2024-03-26 19:48:00 -08:00
# Enable networking
networking.networkmanager.enable = true;
networking.wireless.iwd = {
enable = true;
settings.General.EnableNetworkConfiguration = true;
};
2024-03-26 19:51:35 -08:00
}