nixfiles/nixos/common/network.nix
2023-01-29 10:18:54 -08:00

7 lines
132 B
Nix

{ machine, ... }: {
networking = {
hostName = machine;
nftables.enable = true;
};
services.tailscale.enable = true;
}