nix-config/hosts/common/networking.nix
2022-11-29 17:36:21 -03:00

11 lines
203 B
Nix

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