1
0
Fork 0

Add wireless networks sample

master
dump_stack() 2019-06-21 19:16:58 +00:00
parent f0747d8ace
commit 096bdb9ff9
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
networking.wireless.networks = {
"SomeWifi".psk = "password";
"SomeHiddenWifi" = {
psk = "password";
hidden = true;
};
"SomeOpenWifi" = {};
};
}