mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
70 lines
1.6 KiB
Nix
70 lines
1.6 KiB
Nix
{
|
||
config,
|
||
inputs,
|
||
lib,
|
||
pkgs,
|
||
...
|
||
}: {
|
||
age.secrets.wifi.file = ../../secrets/wifi.age;
|
||
|
||
networking.networkmanager = {
|
||
ensureProfiles = {
|
||
environmentFiles = [
|
||
config.age.secrets.wifi.path
|
||
];
|
||
profiles = {
|
||
Stargate-Discovery = {
|
||
connection = {
|
||
id = "Stargate-Discovery";
|
||
type = "wifi";
|
||
};
|
||
wifi.ssid = "Stargate-Discovery";
|
||
wifi-security = {
|
||
auth-alg = "open";
|
||
key-mgmt = "wpa-psk";
|
||
psk = "$StargateDiscoveryPSK";
|
||
};
|
||
};
|
||
wattson = {
|
||
connection = {
|
||
id = "wattson";
|
||
type = "wifi";
|
||
};
|
||
wifi.ssid = "wattson";
|
||
wifi-security = {
|
||
auth-alg = "open";
|
||
key-mgmt = "wpa-psk";
|
||
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 = {
|
||
"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";
|
||
};
|
||
};
|
||
};
|
||
};
|
||
}
|