summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2013-10-20 20:39:08 +0400
committerMichael Raskin <7c6f434c@mail.ru>2013-10-20 20:39:37 +0400
commita0bbc3e83814f19709f2c63af3df2e7f6563a2e9 (patch)
treec8e623afe3ac78a5288e56834b0482bc003e7136 /nixos/modules
parent8818dbedbfba7e61dfe95cdb3462999c242f0d6e (diff)
downloadnixlib-a0bbc3e83814f19709f2c63af3df2e7f6563a2e9.tar
nixlib-a0bbc3e83814f19709f2c63af3df2e7f6563a2e9.tar.gz
nixlib-a0bbc3e83814f19709f2c63af3df2e7f6563a2e9.tar.bz2
nixlib-a0bbc3e83814f19709f2c63af3df2e7f6563a2e9.tar.lz
nixlib-a0bbc3e83814f19709f2c63af3df2e7f6563a2e9.tar.xz
nixlib-a0bbc3e83814f19709f2c63af3df2e7f6563a2e9.tar.zst
nixlib-a0bbc3e83814f19709f2c63af3df2e7f6563a2e9.zip
Add apparently missing option to vsftpd configuration
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/vsftpd.nix7
1 files changed, 7 insertions, 0 deletions
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)) ;
 
   };