mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
eduroam is kinda broken, fixing with pxl hotspot
This commit is contained in:
parent
e19d6002f0
commit
6c923b264d
7 changed files with 36 additions and 23 deletions
|
@ -28,6 +28,10 @@
|
|||
psk = "@DORM_PSK@";
|
||||
authProtocols = [ "WPA-PSK" ];
|
||||
};
|
||||
"@PIXEL_SSID@" = {
|
||||
psk = "@PIXEL_PSK@";
|
||||
authProtocols = [ "WPA-PSK" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -5,13 +5,16 @@
|
|||
wireless.networks = {
|
||||
eduroam = {
|
||||
auth = ''
|
||||
eap=PEAP
|
||||
eap=TTLS
|
||||
anonymous_identity="anonymous@tu-dresden.de"
|
||||
ca_cert="/etc/ssl/certs/ca-certificates.crt"
|
||||
domain_suffix_match="radius-eduroam.zih.tu-dresden.de"
|
||||
identity="rose159e@tu-dresden.de"
|
||||
password="@EDUROAM_AUTH@"
|
||||
phase2="auth=MSCHAPV2"
|
||||
phase2="auth=PAP"
|
||||
'';
|
||||
extraConfig = ''
|
||||
scan_ssid=1
|
||||
'';
|
||||
authProtocols = [ "WPA-EAP" ];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue