aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/router.nix
blob: e65ef10ec524a63c0d2a39e94661660daa2cb74c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{ config, lib, pkgs, ... }:

with lib;
let

  cnf = config.cynerd.router;

in {

  options = {
    cynerd.router = {
      enable = mkOption {
        type = types.bool;
        default = false;
        description = "Enable router support";
      };
      wan = mkOption {
        type = types.string;
        description = "Interface for the router's WAN";
      };
      brlan = mkOption {
        type = types.string;
        default = "brlan";
        description = "LAN interface (commonly some bridge)";
      };
      # TODO IP range and so on
    };
  };

  config = mkIf cnf {

    # TODO firewall NAT
    networking = {

    };

    services.dhcpd4 = {
      enable = true;
      authoritative = true;
      interfaces = [ "brlan" ];
      extraConfig = ''
      '';
    };

    services.dhcpd6 = {
      enable = true;
      authoritative = true;
      interfaces = [ "brlan" ];
      extraConfig = ''
      '';
    };

    services.kresd = {
      enable = true;
    };

  };
}