mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
base/networking: added javalords wifi network
This commit is contained in:
parent
5a5a8dcb13
commit
efb5e91158
|
@ -21,6 +21,29 @@
|
||||||
config.age.secrets.wifi.path
|
config.age.secrets.wifi.path
|
||||||
];
|
];
|
||||||
profiles = {
|
profiles = {
|
||||||
|
"Dustin’s iPhone" = {
|
||||||
|
connection = {
|
||||||
|
id = "Dustin’s iPhone";
|
||||||
|
type = "wifi";
|
||||||
|
};
|
||||||
|
wifi.ssid = "Dustin’s iPhone";
|
||||||
|
wifi-security = {
|
||||||
|
auth-alg = "open";
|
||||||
|
key-mgmt = "wpa-psk";
|
||||||
|
psk = "$DustinsiPhonePSK";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
javapatron = {
|
||||||
|
connection = {
|
||||||
|
id = "javapatron";
|
||||||
|
type = "wifi";
|
||||||
|
};
|
||||||
|
wifi.ssid = "javapatron";
|
||||||
|
wifi-security = {
|
||||||
|
auth-alg = "open";
|
||||||
|
key-mgmt = "wpa-psk";
|
||||||
|
};
|
||||||
|
};
|
||||||
Stargate-Discovery = {
|
Stargate-Discovery = {
|
||||||
connection = {
|
connection = {
|
||||||
id = "Stargate-Discovery";
|
id = "Stargate-Discovery";
|
||||||
|
@ -45,18 +68,7 @@
|
||||||
psk = "$wattsonPSK";
|
psk = "$wattsonPSK";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"Dustin’s iPhone" = {
|
|
||||||
connection = {
|
|
||||||
id = "Dustin’s iPhone";
|
|
||||||
type = "wifi";
|
|
||||||
};
|
|
||||||
wifi.ssid = "Dustin’s iPhone";
|
|
||||||
wifi-security = {
|
|
||||||
auth-alg = "open";
|
|
||||||
key-mgmt = "wpa-psk";
|
|
||||||
psk = "$DustinsiPhonePSK";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
WeWorkWiFi = {
|
WeWorkWiFi = {
|
||||||
"802-1x" = {
|
"802-1x" = {
|
||||||
eap = "peap;";
|
eap = "peap;";
|
||||||
|
|
Loading…
Reference in a new issue