depot/third_party/nixpkgs/nixos/modules/services/networking/tftpd.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

46 lines
844 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
###### interface
options = {
services.tftpd.enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to enable tftpd, a Trivial File Transfer Protocol server.
The server will be run as an xinetd service.
'';
};
services.tftpd.path = mkOption {
type = types.path;
default = "/srv/tftp";
description = ''
Where the tftp server files are stored.
'';
};
};
###### implementation
config = mkIf config.services.tftpd.enable {
services.xinetd.enable = true;
services.xinetd.services = singleton
{ name = "tftp";
protocol = "udp";
server = "${pkgs.netkittftp}/sbin/in.tftpd";
serverArgs = "${config.services.tftpd.path}";
};
};
}