13 lines
394 B
Nix
13 lines
394 B
Nix
{ ... }: {
|
|
imports = [
|
|
../../common/services/tailscale-autoconnect.nix
|
|
../../common/services/podman.nix
|
|
../../common/modules/raspberry-pi-4.nix
|
|
./containers/piaware.nix
|
|
];
|
|
|
|
time.timeZone = "Europe/Warsaw";
|
|
networking.hostName = "piaware-rpi4";
|
|
services.tailscale.extraUpFlags = [ "--advertise-exit-node" ];
|
|
boot.kernel.sysctl = { "net.ipv4.ip_forward" = true; };
|
|
}
|