From 76419de7406ff08be95623711fb2acf9ebc31700 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Fri, 13 Dec 2024 16:38:36 +0100 Subject: [PATCH] fix(modules/django-apps): Add descriptions where missing --- modules/nixos/django-apps/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/nixos/django-apps/default.nix b/modules/nixos/django-apps/default.nix index 4313bbb..0aa9ec3 100644 --- a/modules/nixos/django-apps/default.nix +++ b/modules/nixos/django-apps/default.nix @@ -326,12 +326,18 @@ in type = str; readOnly = true; default = "/var/lib/django-apps/${name}"; + description = '' + The directory containing the various files necessary for the website to function. + ''; }; sourceDirectory = mkOption { type = str; readOnly = true; default = "${config.baseDirectory}/source"; + description = '' + The path where the source code of the django application will be stored. It is an absolute path. + ''; }; staticDirectory = mkOption { @@ -355,6 +361,10 @@ in } ) ); + default = { }; + description = '' + The set of django websites to deploy. + ''; }; };