Files
alo-cluster/hosts/alo-cloud-1/default.nix
2025-11-05 16:50:05 +00:00

28 lines
703 B
Nix

{ pkgs, lib, inputs, ... }:
{
imports = [
../../common/global
../../common/minimal-node.nix
./hardware.nix
./reverse-proxy.nix
];
boot.initrd.kernelModules = [ "virtio_gpu" ];
boot.kernelParams = [ "console=tty" ];
networking.hostName = "alo-cloud-1";
services.tailscaleAutoconnect.authkey = "tskey-auth-kbdARC7CNTRL-pNQddmWV9q5C2sRV3WGep5ehjJ1qvcfD";
services.tailscale = {
enable = true;
useRoutingFeatures = lib.mkForce "server"; # enables IPv4/IPv6 forwarding + loose rp_filter
extraUpFlags = [ "--advertise-exit-node" ];
};
networking.nat = {
enable = true;
externalInterface = "enp1s0";
internalInterfaces = [ "tailscale0" ];
};
}