Emitter: Ensure postgres user works

This commit is contained in:
fruchti 2025-12-05 11:12:19 +01:00
parent 5026cffd60
commit 14228644e6

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
imports = [
./forgejo.nix
@ -144,6 +144,9 @@
services.postgresql = {
package = pkgs.postgresql_16;
authentication = lib.mkOrder 600 ''
local all postgres peer map=postgres
'';
};
services.logrotate = {