nixos-config/linux/nebula/network.nix

17 lines
344 B
Nix
Raw Normal View History

2024-08-14 11:14:20 -07:00
{config, ...}: {
2023-10-09 10:44:07 -07:00
networking = {
2024-08-14 11:14:20 -07:00
firewall.trustedInterfaces = [config.services.tailscale.interfaceName];
2023-10-09 10:44:07 -07:00
hostId = "e6449321";
networkmanager = {
enable = true;
wifi.backend = "iwd";
};
wireless.iwd.enable = true;
};
2026-02-16 22:00:15 -08:00
services = {
openssh.enable = true;
tailscale.useRoutingFeatures = "both";
};
2023-10-09 10:44:07 -07:00
}