nixos-config/common/network.nix
2026-02-16 22:11:39 -08:00

8 lines
150 B
Nix

{config, ...}: {
networking.nftables.enable = true;
services.tailscale = {
enable = true;
port = config.constants.port.tailscale;
};
}