module: don't force Postgres 14

This commit is contained in:
Quentin Smith 2024-02-15 19:34:08 -05:00 committed by WilliButz
parent c178d820d7
commit 8bc790171f
No known key found for this signature in database
GPG key ID: AB05DF703EB9DC70

View file

@ -184,7 +184,7 @@ in
};
postgresql = mkIf cfg.createDatabase {
enable = true;
package = pkgs.postgresql_14;
package = lib.mkDefault pkgs.postgresql_14;
ensureDatabases = [ "authentik" ];
ensureUsers = [
{ name = "authentik"; ensureDBOwnership = true; }