nix/option/Ftpd.nix

13 lines
176 B
Nix
Raw Normal View History

2024-11-16 04:43:59 +03:00
{
lib,
...
}: {
options.module.ftpd = {
enable = lib.mkEnableOption "the FTP server";
storage = lib.mkOption {
default = null;
type = lib.types.str;
};
};
}