services.vsftpd.userlistFile

NixOS option

Newline separated list of names to be allowed/denied if userlistEnable is true. Meaning see userlistDeny. The default is a file containing the users from userlist. If explicitly set to null userlist_file will not be set in vsftpd’s config file.

type: absolute path
Default
pkgs.writeText "userlist" (concatMapStrings (x: "${x}\n") cfg.userlist)
declared in: nixos/modules/services/networking/vsftpd.nixView source on NixOS/nixpkgs →