summary refs log tree commit diff
path: root/nixos/modules/services/networking/ndppd.nix
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2018-05-05 08:33:20 +0300
committerMatthew Justin Bauer <mjbauer95@gmail.com>2018-05-05 00:33:20 -0500
commit9f1da665876cdd4f68750a2241d2bd5fc203f275 (patch)
tree60738f87fdfd371f200f40c14c6292eb6c7fd5af /nixos/modules/services/networking/ndppd.nix
parent21b926003d50f2f2365f234b9a0bf911607287d2 (diff)
downloadnixpkgs-9f1da665876cdd4f68750a2241d2bd5fc203f275.tar
nixpkgs-9f1da665876cdd4f68750a2241d2bd5fc203f275.tar.gz
nixpkgs-9f1da665876cdd4f68750a2241d2bd5fc203f275.tar.bz2
nixpkgs-9f1da665876cdd4f68750a2241d2bd5fc203f275.tar.lz
nixpkgs-9f1da665876cdd4f68750a2241d2bd5fc203f275.tar.xz
nixpkgs-9f1da665876cdd4f68750a2241d2bd5fc203f275.tar.zst
nixpkgs-9f1da665876cdd4f68750a2241d2bd5fc203f275.zip
ndppd module: init (#35533)
Diffstat (limited to 'nixos/modules/services/networking/ndppd.nix')
-rw-r--r--nixos/modules/services/networking/ndppd.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/ndppd.nix b/nixos/modules/services/networking/ndppd.nix
new file mode 100644
index 00000000000..1d6c48dd8d3
--- /dev/null
+++ b/nixos/modules/services/networking/ndppd.nix
@@ -0,0 +1,47 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+  cfg = config.services.ndppd;
+
+  configFile = pkgs.runCommand "ndppd.conf" {} ''
+    substitute ${pkgs.ndppd}/etc/ndppd.conf $out \
+      --replace eth0 ${cfg.interface} \
+      --replace 1111:: ${cfg.network}
+  '';
+in {
+  options = {
+    services.ndppd = {
+      enable = mkEnableOption "daemon that proxies NDP (Neighbor Discovery Protocol) messages between interfaces";
+      interface = mkOption {
+        type = types.string;
+        default = "eth0";
+        example = "ens3";
+        description = "Interface which is on link-level with router.";
+      };
+      network = mkOption {
+        type = types.string;
+        default = "1111::";
+        example = "2001:DB8::/32";
+        description = "Network that we proxy.";
+      };
+      configFile = mkOption {
+        type = types.nullOr types.path;
+        default = null;
+        description = "Path to configuration file.";
+      };
+    };
+  };
+
+  config = mkIf cfg.enable {
+    systemd.packages = [ pkgs.ndppd ];
+    environment.etc."ndppd.conf".source = if (cfg.configFile != null) then cfg.configFile else configFile;
+    systemd.services.ndppd = {
+      serviceConfig.RuntimeDirectory = [ "ndppd" ];
+      wantedBy = [ "multi-user.target" ];
+    };
+  };
+
+  meta.maintainers = with maintainers; [ gnidorah ];
+}