This commit is contained in:
KoenDR06 2025-09-30 10:46:10 +02:00
parent 3b6cd4f955
commit 853aeabb94
2 changed files with 17 additions and 7 deletions

View file

@ -21,24 +21,34 @@ in {
networking.wireless = {
enable = true;
userControlled.enable = true;
allowAuxiliaryImperativeNetworks = true;
secretsFile = toString config.age.secrets.wifi.path;
networks = {
"Wi-Fi de Ruiters" = {
pskRaw = "ext:psk_wifideruiter";
psk = "ext:psk_ruiter";
};
"kargadoor" = {
pskRaw = "ext:psk_kargadoor";
psk = "ext:psk_kargadoor";
};
"eduroam" = {
"Hete plek" = {
psk = "ext:psk_hotspot";
};
"Woestgaafsecure Gamelab" = {
psk = "ext:psk_sticky";
};
"Utrecht University" = {
authProtocols = ["WPA-EAP"];
auth = ''
key_mgmt=WPA-EAP
eap=PWD
identity="ext:identity_eduroam"
password="ext:psk_eduroam"
eap=PEAP
identity="k.j.deruiter@students.uu.nl"
password="ext:psk_uni"
phase2="auth=MSCHAPV2"
'';
};
};