Move all of NixOS to nixos/ in preparation of the repository merge

This commit is contained in:
Eelco Dolstra
2013-10-10 13:28:20 +02:00
parent 6070bc016b
commit 5c1f8cbc70
481 changed files with 0 additions and 0 deletions
@@ -0,0 +1,43 @@
{ config, pkgs, ... }:
with pkgs.lib;
{
###### interface
options = {
services.tftpd.enable = mkOption {
default = false;
description = ''
Whether to enable the anonymous FTP user.
'';
};
services.tftpd.path = mkOption {
default = "/home/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}";
};
};
}