2024-12-16 20:46:25 +01:00
|
|
|
{ ... }: {
|
2023-12-13 06:17:46 +01:00
|
|
|
imports = [
|
2024-01-12 08:43:50 +01:00
|
|
|
../../common/services/tailscale-autoconnect.nix
|
2024-03-14 01:53:52 +01:00
|
|
|
../../common/services/podman.nix
|
2024-12-16 20:46:25 +01:00
|
|
|
../../common/modules/raspberry-pi-4.nix
|
2024-03-25 01:46:12 +01:00
|
|
|
./containers/piaware.nix
|
2023-12-13 06:17:46 +01:00
|
|
|
];
|
|
|
|
|
2024-11-29 01:48:03 +01:00
|
|
|
time.timeZone = "Europe/Warsaw";
|
2023-12-13 06:17:46 +01:00
|
|
|
networking.hostName = "piaware-rpi4";
|
|
|
|
services.tailscale.extraUpFlags = [ "--advertise-exit-node" ];
|
|
|
|
boot.kernel.sysctl = { "net.ipv4.ip_forward" = true; };
|
2024-03-14 01:53:52 +01:00
|
|
|
}
|