11 lines
185 B
Nix
11 lines
185 B
Nix
{ lib, ... }:
|
|
{
|
|
options.module.ftpd = {
|
|
enable = lib.mkEnableOption "the FTP server";
|
|
storage = lib.mkOption {
|
|
default = null;
|
|
type = lib.types.str;
|
|
};
|
|
};
|
|
}
|