nix-config/hosts/common/networking.nix
2024-03-16 12:53:43 -03:00

11 lines
210 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
networking = {
networkmanager.enable = true;
firewall = {
enable = true;
checkReversePath = "loose"; # Tailscale may fail without this
};
};
}