WIP: docs: missing documentation for dgn-console & django-apps #187

Closed
lbailly wants to merge 1 commit from doc into main
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 417ce61507 - Show all commits

View file

@ -19,11 +19,13 @@ in
pg-upgrade-from = mkOption { pg-upgrade-from = mkOption {
type = lib.types.package; type = lib.types.package;
default = config.services.postgresql.package; default = config.services.postgresql.package;
description = "TODO"; # TODO: documentation
}; };
pg-upgrade-to = mkOption { pg-upgrade-to = mkOption {
type = lib.types.package; type = lib.types.package;
default = pkgs.postgresql_15; default = pkgs.postgresql_15;
description = "TODO"; # TODO: documentation
}; };
}; };

View file

@ -83,6 +83,7 @@ in
}; };
sites = mkOption { sites = mkOption {
description = "TODO"; # TODO: documentation
type = attrsOf ( type = attrsOf (
submodule ( submodule (
{ name, config, ... }: { name, config, ... }:
@ -322,12 +323,14 @@ in
type = str; type = str;
readOnly = true; readOnly = true;
default = "/var/lib/django-apps/${name}"; default = "/var/lib/django-apps/${name}";
description = "TODO"; # TODO: documentation
}; };
sourceDirectory = mkOption { sourceDirectory = mkOption {
type = str; type = str;
readOnly = true; readOnly = true;
default = "${config.baseDirectory}/source"; default = "${config.baseDirectory}/source";
description = "TODO"; # TODO: documentation
}; };
staticDirectory = mkOption { staticDirectory = mkOption {