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

12 lines
256 B
Nix

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