fix(modules/dgn-console): Udate description of psql options

This commit is contained in:
Tom Hubrecht 2024-12-13 15:48:04 +01:00
parent f5147dec8d
commit 3872b17ff6
Signed by: thubrecht
SSH key fingerprint: SHA256:CYNvFo44Ar9qCNnWNnvJVhs0QXO9AZjOLlPeWcSij3Q

View file

@ -23,11 +23,17 @@ 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 = ''
Old postgresql package.
'';
}; };
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 = ''
New postgresql package.
'';
}; };
}; };