nix/nixos/hosts/bakersfield-rpi4/default.nix
2024-12-16 20:46:25 +01:00

11 lines
340 B
Nix

{ ... }: {
imports = [
../../common/services/tailscale-autoconnect.nix
../../common/modules/raspberry-pi-4.nix
];
time.timeZone = "America/Los_Angeles";
networking.hostName = "bakersfield-rpi4";
services.tailscale.extraUpFlags = [ "--advertise-exit-node" ];
boot.kernel.sysctl = { "net.ipv4.ip_forward" = true; };
}