aboutsummaryrefslogblamecommitdiff
path: root/profiles/postgresql.nix
blob: 6e473ad2dea4125971abe57f793a7b2c7ca37a9d (plain) (tree)



















                                    
{ ... }:
{
  services.postgresql = {
    enable = true;
    authentication = ''
      local all all peer map=mapping
    '';
    identMap = ''
      mapping fcuny    postgres
      mapping root     postgres
      mapping postgres postgres
      mapping /^(.*)$  \1
    '';
  };

  services.postgresqlBackup = {
    enable = true;
    compression = "zstd";
  };
}