summaryrefslogtreecommitdiff
path: root/modules/postgres.nix
blob: 8853aaaebf862ab64ccff682c0ea8757a2e28761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  lib,
  ...
}:
{
  services.postgresql = {
    enable = true;
    authentication = lib.mkBefore ''
      #type database  DBuser    auth-method
      local all       postgres  peer
    '';
  };
}