feat: add description for options

This commit is contained in:
tux
2025-02-22 09:59:07 +05:30
parent 5db2541201
commit 65649c30cc

View File

@ -13,19 +13,19 @@ in {
host = mkOption { host = mkOption {
type = lib.types.str; type = lib.types.str;
default = "0.0.0.0"; default = "0.0.0.0";
description = ""; description = "IP address or hostname on which the tfolio service will listen.";
}; };
port = mkOption { port = mkOption {
type = lib.types.port; type = lib.types.port;
default = 22; default = 22;
description = ""; description = "Port number on which the tfolio service will listen.";
}; };
dataDir = mkOption { dataDir = mkOption {
type = lib.types.str; type = lib.types.str;
default = "/var/lib/tfolio/"; default = "/var/lib/tfolio/";
description = ""; description = "Directory where tfolio will store its data files.";
}; };
user = mkOption { user = mkOption {