From a0bbc3e83814f19709f2c63af3df2e7f6563a2e9 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 20 Oct 2013 20:39:08 +0400 Subject: [PATCH] Add apparently missing option to vsftpd configuration --- nixos/modules/services/networking/vsftpd.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/modules/services/networking/vsftpd.nix b/nixos/modules/services/networking/vsftpd.nix index 265afb3618ca..088dbc859ec0 100644 --- a/nixos/modules/services/networking/vsftpd.nix +++ b/nixos/modules/services/networking/vsftpd.nix @@ -126,6 +126,13 @@ in ''; }; + anonymousUserHome = mkOption { + default = "/home/ftp/"; + description = '' + Directory to consider the HOME of the anonymous user. + ''; + }; + } // (listToAttrs (catAttrs "nixosOption" optionDescription)) ; };