nixos-config/common/network.nix

9 lines
150 B
Nix
Raw Normal View History

2026-02-16 22:00:15 -08:00
{config, ...}: {
networking.nftables.enable = true;
services.tailscale = {
enable = true;
port = config.constants.port.tailscale;
};
}