16 lines
213 B
Nix
16 lines
213 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking = {
|
|
wireless = {
|
|
enable = true;
|
|
networks = {
|
|
"your-SSID" = {
|
|
psk = "your-wifi-password";
|
|
};
|
|
};
|
|
};
|
|
dhcp = true;
|
|
};
|
|
}
|