Harald Hoyer
af5c62eb4b
Introduce a dedicated PostgreSQL configuration module to the system. Adjust Nextcloud and Forgejo configurations to utilize this new module.
7 lines
97 B
Nix
7 lines
97 B
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
services.postgresql = {
|
|
package = pkgs.postgresql_14;
|
|
};
|
|
}
|