From 65649c30cc8c33dcdfbac91db4e41e64f803d79e Mon Sep 17 00:00:00 2001 From: tux Date: Sat, 22 Feb 2025 09:59:07 +0530 Subject: [PATCH] feat: add description for options --- modules/nixos/tfolio.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/nixos/tfolio.nix b/modules/nixos/tfolio.nix index 3a90505..9669acf 100644 --- a/modules/nixos/tfolio.nix +++ b/modules/nixos/tfolio.nix @@ -13,19 +13,19 @@ in { host = mkOption { type = lib.types.str; default = "0.0.0.0"; - description = ""; + description = "IP address or hostname on which the tfolio service will listen."; }; port = mkOption { type = lib.types.port; default = 22; - description = ""; + description = "Port number on which the tfolio service will listen."; }; dataDir = mkOption { type = lib.types.str; default = "/var/lib/tfolio/"; - description = ""; + description = "Directory where tfolio will store its data files."; }; user = mkOption {