2024-12-16 20:46:25 +01:00
|
|
|
{ ... }: {
|
2024-04-24 03:40:47 +02:00
|
|
|
imports = [
|
|
|
|
../../common/services/tailscale-autoconnect.nix
|
2024-12-16 20:46:25 +01:00
|
|
|
../../common/modules/raspberry-pi-4.nix
|
2024-04-24 03:40:47 +02:00
|
|
|
];
|
|
|
|
|
2024-12-16 20:46:25 +01:00
|
|
|
time.timeZone = "America/Los_Angeles";
|
2024-04-24 03:40:47 +02:00
|
|
|
networking.hostName = "bakersfield-rpi4";
|
2024-12-16 21:15:25 +01:00
|
|
|
services.tailscale.extraUpFlags = [
|
|
|
|
"--advertise-exit-node"
|
2024-12-17 02:32:59 +01:00
|
|
|
"--advertise-routes=192.168.1.13/32,192.168.1.14/32,192.168.1.15/32,192.168.1.100/32,192.168.1.31/32,192.168.1.101/32"
|
2024-12-16 21:15:25 +01:00
|
|
|
];
|
2024-04-24 03:40:47 +02:00
|
|
|
boot.kernel.sysctl = { "net.ipv4.ip_forward" = true; };
|
|
|
|
}
|