aboutsummaryrefslogtreecommitdiff
path: root/modules/system/nixos/networking/default.nix
blob: a04241188af938fd76843f6257531a476be2207e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  imports = [
    ./iwd.nix
    ./networkmanager.nix
    ./networkd.nix
    ./resolved.nix
  ];

  networking.firewall = {
    enable = true;
    checkReversePath = "loose";
  };
}