summaryrefslogtreecommitdiff
path: root/modules/options/networking.nix
blob: 5f9dcc28cbabeb5f3f1ac584f1bf5e03bf6ac4e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, ... }:
{
  options.modules.networking =
    let
      inherit (lib) mkOption types;
    in
    {
      resolved.enable = mkOption {
        default = false;
        type = types.bool;
      };

      fail2ban.enable = mkOption {
        default = false;
        type = types.bool;
      };
    };
}