summary refs log blame commit diff
path: root/nixos/modules/services/networking/tftpd.nix
blob: c9c0a2b321d5a09666bb89d27b459f52610e0804 (plain) (tree)
1
2
3
4
5
6
7
8
                           
 
         



                  
 


                                      
                        

                      
                                                                         
                                                    



                                    
                        
                            
                      
                                               





















                                                     
{ 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}";
      };

  };

}