nix/nixos/hosts/bakersfield-rpi4/default.nix

15 lines
472 B
Nix
Raw Normal View History

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";
services.tailscale.extraUpFlags = [
"--advertise-exit-node"
"--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-04-24 03:40:47 +02:00
boot.kernel.sysctl = { "net.ipv4.ip_forward" = true; };
}