mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
feat: add description for options
This commit is contained in:
@ -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 {
|
||||||
|
Reference in New Issue
Block a user