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:
parent
d03dbfcbb8
commit
cd1b09af5d
|
@ -19,7 +19,7 @@ with lib;
|
||||||
|
|
||||||
services.tftpd.path = mkOption {
|
services.tftpd.path = mkOption {
|
||||||
type = types.path;
|
type = types.path;
|
||||||
default = "/home/tftp";
|
default = "/srv/tftp";
|
||||||
description = ''
|
description = ''
|
||||||
Where the tftp server files are stored.
|
Where the tftp server files are stored.
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue