nixos-config/modules/networking.nix
2025-03-20 15:26:29 +00:00

16 lines
213 B
Nix

{ config, pkgs, ... }:
{
networking = {
wireless = {
enable = true;
networks = {
"your-SSID" = {
psk = "your-wifi-password";
};
};
};
dhcp = true;
};
}