2022-12-29 15:05:26 +01:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./uni.nix ];
|
|
|
|
|
2023-11-16 13:29:18 +01:00
|
|
|
age.secrets = {
|
|
|
|
wireless = {
|
|
|
|
file = ../../../../secrets/thinkpad/wireless.age;
|
|
|
|
};
|
2023-01-15 02:28:40 +01:00
|
|
|
"wireguard/dorm/private" = {
|
2023-11-16 13:29:18 +01:00
|
|
|
file = ../../../../secrets/thinkpad/wireguard/dorm/private.age;
|
2023-01-15 02:28:40 +01:00
|
|
|
owner = config.users.users.systemd-network.name;
|
|
|
|
};
|
|
|
|
"wireguard/dorm/preshared" = {
|
2023-11-16 13:29:18 +01:00
|
|
|
file = ../../../../secrets/thinkpad/wireguard/dorm/preshared.age;
|
2023-01-15 02:28:40 +01:00
|
|
|
owner = config.users.users.systemd-network.name;
|
|
|
|
};
|
2023-11-16 13:29:18 +01:00
|
|
|
|
2022-12-30 11:02:10 +01:00
|
|
|
};
|
2023-10-08 14:22:52 +02:00
|
|
|
services.lldpd.enable = true;
|
2023-09-29 10:32:24 +02:00
|
|
|
services.resolved = {
|
|
|
|
fallbackDns = [
|
|
|
|
"9.9.9.9"
|
|
|
|
"149.112.112.112"
|
|
|
|
"2620:fe::fe"
|
|
|
|
"2620:fe::9"
|
|
|
|
];
|
|
|
|
# allow downgrade since fritzbox at home doesn't support it (yet?)
|
|
|
|
dnssec = "allow-downgrade";
|
|
|
|
};
|
2023-04-12 22:09:46 +02:00
|
|
|
networking = {
|
2023-10-26 12:12:45 +02:00
|
|
|
nftables.enable = true;
|
2023-04-12 22:09:46 +02:00
|
|
|
useNetworkd = true;
|
2022-12-29 15:05:26 +01:00
|
|
|
hostName = "thinkpad";
|
2023-08-02 18:04:26 +02:00
|
|
|
hostId = "d8d34032";
|
2023-04-12 15:05:15 +02:00
|
|
|
enableIPv6 = true;
|
2023-08-19 14:12:51 +02:00
|
|
|
firewall.allowedTCPPorts = [ 24727 ];
|
2022-12-29 15:05:26 +01:00
|
|
|
wireless = {
|
|
|
|
enable = true;
|
|
|
|
userControlled.enable = true;
|
2023-11-16 13:29:18 +01:00
|
|
|
environmentFile = config.age.secrets.wireless.path;
|
2022-12-29 15:05:26 +01:00
|
|
|
networks = {
|
|
|
|
"@HOME_SSID@" = {
|
|
|
|
psk = "@HOME_PSK@";
|
|
|
|
authProtocols = [ "WPA-PSK" ];
|
|
|
|
};
|
|
|
|
"@DORM_SSID@" = {
|
|
|
|
psk = "@DORM_PSK@";
|
2023-10-13 00:28:39 +02:00
|
|
|
authProtocols = [ "SAE" ];
|
2022-12-29 15:05:26 +01:00
|
|
|
};
|
2023-04-14 11:14:53 +02:00
|
|
|
"@PIXEL_SSID@" = {
|
|
|
|
psk = "@PIXEL_PSK@";
|
|
|
|
authProtocols = [ "WPA-PSK" ];
|
|
|
|
};
|
2022-12-29 15:05:26 +01:00
|
|
|
};
|
|
|
|
};
|
2023-01-15 02:28:40 +01:00
|
|
|
};
|
|
|
|
systemd.network = {
|
|
|
|
enable = true;
|
2023-10-13 00:28:39 +02:00
|
|
|
wait-online.anyInterface = true;
|
2023-01-15 14:27:49 +01:00
|
|
|
networks."10-loopback" = {
|
|
|
|
matchConfig.Name = "lo";
|
2023-01-23 23:35:44 +01:00
|
|
|
linkConfig.RequiredForOnline = false;
|
2023-01-15 14:27:49 +01:00
|
|
|
};
|
2023-10-22 15:45:30 +02:00
|
|
|
networks."10-wired-default" = {
|
|
|
|
matchConfig.Name = "en*";
|
2023-02-14 19:49:31 +01:00
|
|
|
linkConfig.RequiredForOnline = false;
|
2023-01-15 14:27:49 +01:00
|
|
|
networkConfig = {
|
|
|
|
DHCP = "yes";
|
2023-05-30 17:33:15 +02:00
|
|
|
IPv6AcceptRA = "yes";
|
|
|
|
IPv6PrivacyExtensions = "yes";
|
2023-01-15 02:28:40 +01:00
|
|
|
};
|
2023-01-15 14:27:49 +01:00
|
|
|
dhcpV4Config = {
|
|
|
|
RouteMetric = 10;
|
2023-01-15 02:28:40 +01:00
|
|
|
};
|
|
|
|
};
|
2023-01-15 14:58:38 +01:00
|
|
|
networks."10-wireless-home" = {
|
|
|
|
matchConfig = {
|
|
|
|
Name = "wlp9s0";
|
2023-04-06 11:00:53 +02:00
|
|
|
SSID = "Smoerrebroed";
|
2023-01-15 14:58:38 +01:00
|
|
|
};
|
|
|
|
networkConfig = {
|
|
|
|
DHCP = "yes";
|
|
|
|
IgnoreCarrierLoss = "3s";
|
2023-09-24 21:32:28 +02:00
|
|
|
IPv6AcceptRA = "yes";
|
|
|
|
IPv6PrivacyExtensions = "yes";
|
2023-01-15 14:58:38 +01:00
|
|
|
};
|
|
|
|
dhcpV4Config = {
|
|
|
|
RouteMetric = 20;
|
|
|
|
};
|
|
|
|
routes = [
|
|
|
|
# Route to the Model train network via raspi
|
|
|
|
{ routeConfig = { Gateway = "192.168.178.63"; Destination = "192.168.179.0/24"; }; }
|
|
|
|
];
|
|
|
|
};
|
|
|
|
networks."15-wireless-default" = {
|
2023-01-15 14:27:49 +01:00
|
|
|
matchConfig.Name = "wlp9s0";
|
2023-02-14 19:49:31 +01:00
|
|
|
linkConfig.RequiredForOnline = false;
|
2023-01-15 14:27:49 +01:00
|
|
|
networkConfig = {
|
|
|
|
DHCP = "yes";
|
|
|
|
IgnoreCarrierLoss = "3s";
|
2023-04-12 15:05:15 +02:00
|
|
|
IPv6AcceptRA = "yes";
|
2023-05-30 17:33:15 +02:00
|
|
|
IPv6PrivacyExtensions = "yes";
|
2023-01-15 02:28:40 +01:00
|
|
|
};
|
2023-01-15 14:27:49 +01:00
|
|
|
dhcpV4Config = {
|
|
|
|
RouteMetric = 20;
|
2022-12-30 11:02:10 +01:00
|
|
|
};
|
2023-04-12 15:05:15 +02:00
|
|
|
|
2022-12-30 11:02:10 +01:00
|
|
|
};
|
2023-01-15 02:28:40 +01:00
|
|
|
|
|
|
|
# some wireguard interfaces
|
2023-10-22 15:45:30 +02:00
|
|
|
netdevs."30-wg0" = {
|
2023-01-15 14:27:49 +01:00
|
|
|
netdevConfig = {
|
|
|
|
Kind = "wireguard";
|
2023-10-22 15:45:30 +02:00
|
|
|
Name = "wg0";
|
2023-01-15 14:27:49 +01:00
|
|
|
};
|
|
|
|
wireguardConfig = {
|
2023-11-16 13:29:18 +01:00
|
|
|
PrivateKeyFile = config.age.secrets."wireguard/dorm/private".path;
|
2023-01-15 14:27:49 +01:00
|
|
|
ListenPort = 51820;
|
|
|
|
};
|
|
|
|
wireguardPeers = [
|
|
|
|
{
|
|
|
|
wireguardPeerConfig = {
|
2023-10-13 00:28:39 +02:00
|
|
|
PublicKey = "Z5lwwHTCDr6OF4lfaCdSHNveunOn4RzuOQeyB+El9mQ=";
|
2023-11-16 13:29:18 +01:00
|
|
|
PresharedKeyFile = config.age.secrets."wireguard/dorm/preshared".path;
|
2023-10-13 00:28:39 +02:00
|
|
|
Endpoint = "141.30.227.6:51820";
|
2023-10-22 15:45:30 +02:00
|
|
|
AllowedIPs = "192.168.42.0/24, 192.168.43.0/24";
|
2023-01-15 14:27:49 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2023-10-22 15:45:30 +02:00
|
|
|
networks."30-wg0" = {
|
|
|
|
matchConfig.Name = "wg0";
|
2023-05-05 23:43:40 +02:00
|
|
|
networkConfig = {
|
2023-10-22 15:45:30 +02:00
|
|
|
DNS = "192.168.42.1";
|
2023-05-05 23:43:40 +02:00
|
|
|
};
|
2023-01-16 16:55:17 +01:00
|
|
|
addresses = [
|
|
|
|
{
|
|
|
|
addressConfig = {
|
2023-10-22 15:45:30 +02:00
|
|
|
Address = "192.168.43.3/24";
|
2023-01-16 16:55:17 +01:00
|
|
|
RouteMetric = 30;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
2023-01-15 14:27:49 +01:00
|
|
|
routes = [
|
2023-10-13 00:28:39 +02:00
|
|
|
# allowedIPs is somewhat broken
|
2023-10-22 15:45:30 +02:00
|
|
|
{ routeConfig = { Gateway = "0.0.0.0"; Destination = "192.168.42.0/24"; Metric = 30; }; }
|
2023-01-15 14:27:49 +01:00
|
|
|
];
|
|
|
|
};
|
2022-12-29 15:05:26 +01:00
|
|
|
};
|
|
|
|
}
|