mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 13:53:56 -05:00
system: add WeWorkWiFi network
This commit is contained in:
parent
50c4746c4a
commit
36760c90f3
|
@ -14,8 +14,10 @@
|
|||
];
|
||||
profiles = {
|
||||
Stargate-Discovery = {
|
||||
connection.type = "wifi";
|
||||
connection.id = "Stargate-Discovery";
|
||||
connection = {
|
||||
id = "Stargate-Discovery";
|
||||
type = "wifi";
|
||||
};
|
||||
wifi.ssid = "Stargate-Discovery";
|
||||
wifi-security = {
|
||||
auth-alg = "open";
|
||||
|
@ -24,8 +26,10 @@
|
|||
};
|
||||
};
|
||||
wattson = {
|
||||
connection.type = "wifi";
|
||||
connection.id = "wattson";
|
||||
connection = {
|
||||
id = "wattson";
|
||||
type = "wifi";
|
||||
};
|
||||
wifi.ssid = "wattson";
|
||||
wifi-security = {
|
||||
auth-alg = "open";
|
||||
|
@ -34,8 +38,10 @@
|
|||
};
|
||||
};
|
||||
"Dustin’s iPhone" = {
|
||||
connection.type = "Dustin’s iPhone";
|
||||
connection.id = "Dustin’s iPhone";
|
||||
connection = {
|
||||
id = "Dustin’s iPhone";
|
||||
type = "wifi";
|
||||
};
|
||||
wifi.ssid = "Dustin’s iPhone";
|
||||
wifi-security = {
|
||||
auth-alg = "open";
|
||||
|
@ -43,6 +49,20 @@
|
|||
psk = "$DustinsiPhonePSK";
|
||||
};
|
||||
};
|
||||
WeWorkWiFi = {
|
||||
"802-1x" = {
|
||||
eap = "peap;";
|
||||
identity = "$WeWorkWiFiIdentity";
|
||||
password = "$WeWorkWiFiPassword";
|
||||
phase2-auth = "mschapv2";
|
||||
};
|
||||
connection = {
|
||||
id = "WeWorkWiFi";
|
||||
type = "wifi";
|
||||
};
|
||||
wifi.ssid = "WeWorkWiFi";
|
||||
wifi-security.key-mgmt = "wpa-eap";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
BIN
secrets/wifi.age
BIN
secrets/wifi.age
Binary file not shown.
Loading…
Reference in a new issue