summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2014-06-12 05:36:16 +0000
committerMichael Raskin <7c6f434c@mail.ru>2014-09-01 10:33:48 +0400
commit99243a5c514c888e09bbc13214a6ba23ea03d392 (patch)
treea2dc076683ae597696da510917ee955791cd50e5
parent8f50d803ef9c94fb82909e22b603982a0a522aea (diff)
downloadnixpkgs-99243a5c514c888e09bbc13214a6ba23ea03d392.tar
nixpkgs-99243a5c514c888e09bbc13214a6ba23ea03d392.tar.gz
nixpkgs-99243a5c514c888e09bbc13214a6ba23ea03d392.tar.bz2
nixpkgs-99243a5c514c888e09bbc13214a6ba23ea03d392.tar.lz
nixpkgs-99243a5c514c888e09bbc13214a6ba23ea03d392.tar.xz
nixpkgs-99243a5c514c888e09bbc13214a6ba23ea03d392.tar.zst
nixpkgs-99243a5c514c888e09bbc13214a6ba23ea03d392.zip
nixos: add atftpd service
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/networking/atftpd.nix51
2 files changed, 52 insertions, 0 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 297ca0d1be4..f7ab4a474b8 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -192,6 +192,7 @@
   ./services/network-filesystems/rsyncd.nix
   ./services/network-filesystems/samba.nix
   ./services/networking/amuled.nix
+  ./services/networking/atftpd.nix
   ./services/networking/avahi-daemon.nix
   ./services/networking/bind.nix
   ./services/networking/bitlbee.nix
diff --git a/nixos/modules/services/networking/atftpd.nix b/nixos/modules/services/networking/atftpd.nix
new file mode 100644
index 00000000000..ab9f8650f0f
--- /dev/null
+++ b/nixos/modules/services/networking/atftpd.nix
@@ -0,0 +1,51 @@
+# NixOS module for atftpd TFTP server
+
+{ config, pkgs, ... }:
+
+with pkgs.lib;
+
+let
+
+  cfg = config.services.atftpd;
+
+in
+
+{
+
+  options = {
+
+    services.atftpd = {
+
+      enable = mkOption {
+        default = false;
+        type = types.uniq types.bool;
+        description = ''
+          Whenever to enable the atftpd TFTP server.
+        '';
+      };
+
+      root = mkOption {
+        default = "/var/empty";
+        type = types.uniq types.string;
+        description = ''
+          Document root directory for the atftpd.
+        '';
+      };
+
+    };
+
+  };
+
+  config = mkIf cfg.enable {
+
+    systemd.services.atftpd = {
+      description = "atftpd TFTP server";
+      after = [ "network.target" ];
+      wantedBy = [ "multi-user.target" ];
+      # runs as nobody
+      serviceConfig.ExecStart = "${pkgs.atftp}/sbin/atftpd --daemon --no-fork --bind-address 0.0.0.0 ${cfg.root}";
+    };
+
+  };
+
+}