Update configurations

This commit is contained in:
thiloho
2024-01-13 16:58:15 +01:00
parent 94bded4f35
commit f4070f8d48
3 changed files with 14 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, ... }:
{ pkgs, inputs, lib, ... }:
{
imports = [
@@ -30,9 +30,9 @@
enable = true;
package = pkgs.postgresql_15;
ensureDatabases = [ "dcbot" "todos" ];
authentication = pkgs.lib.mkOverride 10 ''
#type database DBuser auth-method
local all all trust
authentication = lib.mkForce ''
local all all trust
host all all ::1/128 trust
'';
};
};