nixos-config/linux/protostar/network.nix
2024-08-14 22:52:07 -07:00

12 lines
283 B
Nix

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