nixos/tftpd: change default dir from /home/tftp to /srv/tftp

/home is for real users. /srv is recommended by FHS (although there is
no consensus for what to name subdirs under /srv).
This commit is contained in:
Bjørn Forsman 2016-10-17 16:14:08 +02:00
parent d03dbfcbb8
commit cd1b09af5d

View File

@ -19,7 +19,7 @@ with lib;
services.tftpd.path = mkOption {
type = types.path;
default = "/home/tftp";
default = "/srv/tftp";
description = ''
Where the tftp server files are stored.
'';