nixcfg/systems/x86_64-linux/mx/postgresql.nix
Harald Hoyer af5c62eb4b 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.
2024-10-15 08:58:47 +02:00

7 lines
97 B
Nix

{ pkgs, lib, config, ... }:
{
services.postgresql = {
package = pkgs.postgresql_14;
};
}