From cd1b09af5d85820926b9ce447ab678f13826eb85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 17 Oct 2016 16:14:08 +0200 Subject: [PATCH] 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). --- nixos/modules/services/networking/tftpd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/tftpd.nix b/nixos/modules/services/networking/tftpd.nix index a41d2491a11..c9c0a2b321d 100644 --- a/nixos/modules/services/networking/tftpd.nix +++ b/nixos/modules/services/networking/tftpd.nix @@ -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. '';