Require postgres version to be configured manually
Some checks failed
CI / build (push) Failing after 44s

This commit is contained in:
Fabian Hauser 2024-12-06 14:26:21 +02:00
parent 2b415162b6
commit 462622a077

View file

@ -12,6 +12,10 @@ with lib;
{ {
options.qois.postgresql = { options.qois.postgresql = {
enable = mkEnableOption ''Enable postgresql services with defaults''; enable = mkEnableOption ''Enable postgresql services with defaults'';
package = mkPackageOption pkgs "postgresql" {
example = "postgresql_15";
default = null;
};
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {