nix-config/hosts/common/networking.nix
2022-12-22 22:38:12 -03:00

11 lines
224 B
Nix

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