1
0

Add wireless networks sample

This commit is contained in:
2019-06-21 19:16:58 +00:00
parent f0747d8ace
commit 096bdb9ff9

View File

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