nix-config/hosts/common/networking.nix
2023-04-06 09:45:01 -03:00

11 lines
211 B
Nix

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