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

16 lines
344 B
Nix

{config, ...}: {
networking = {
firewall.trustedInterfaces = [config.services.tailscale.interfaceName];
hostId = "e6449321";
networkmanager = {
enable = true;
wifi.backend = "iwd";
};
wireless.iwd.enable = true;
};
services = {
openssh.enable = true;
tailscale.useRoutingFeatures = "both";
};
}