feat(services): add dedicated PostgreSQL module

Introduce a dedicated PostgreSQL configuration module to the system. Adjust Nextcloud and Forgejo configurations to utilize this new module.
This commit is contained in:
Harald Hoyer 2024-10-15 08:58:47 +02:00
parent 6d2951155c
commit af5c62eb4b
4 changed files with 28 additions and 26 deletions

View file

@ -0,0 +1,6 @@
{ pkgs, lib, config, ... }:
{
services.postgresql = {
package = pkgs.postgresql_14;
};
}