mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
configured networks
vpn isn't configured yet, for cable I don't know
This commit is contained in:
parent
f85c5de8b7
commit
8f8ba0d250
6 changed files with 61 additions and 13 deletions
28
hosts/thinkpad/modules/networks/default.nix
Normal file
28
hosts/thinkpad/modules/networks/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
imports = [ ./uni.nix ];
|
||||
|
||||
sops.secrets."wireless-env" = {};
|
||||
networking = {
|
||||
hostName = "thinkpad";
|
||||
firewall = {
|
||||
allowedUDPPorts = [ 51820 ]; # used for wireguard
|
||||
checkReversePath = false;
|
||||
};
|
||||
wireless = {
|
||||
enable = true;
|
||||
userControlled.enable = true;
|
||||
environmentFile = config.sops.secrets."wireless-env".path;
|
||||
networks = {
|
||||
"@HOME_SSID@" = {
|
||||
psk = "@HOME_PSK@";
|
||||
authProtocols = [ "WPA-PSK" ];
|
||||
};
|
||||
"@DORM_SSID@" = {
|
||||
psk = "@DORM_PSK@";
|
||||
authProtocols = [ "WPA-PSK" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
29
hosts/thinkpad/modules/networks/uni.nix
Normal file
29
hosts/thinkpad/modules/networks/uni.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
networking.wireless.networks = {
|
||||
eduroam ={
|
||||
auth = ''
|
||||
eap=PEAP
|
||||
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"
|
||||
'';
|
||||
authProtocols = [ "WPA-EAP" ];
|
||||
};
|
||||
agdsn ={
|
||||
auth = ''
|
||||
eap=TTLS
|
||||
anonymous_identity="anonymous@agdsn.de"
|
||||
ca_cert="/etc/ssl/certs/ca-certificates.crt"
|
||||
domain_suffix_match="radius.agdsn.de"
|
||||
identity="r5"
|
||||
password="@AGDSN_AUTH@"
|
||||
phase2="auth=PAP"
|
||||
'';
|
||||
authProtocols = [ "WPA-EAP" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue