Use mkForce instead of mkOverride

This commit is contained in:
thiloho
2023-11-01 16:59:14 +01:00
parent cd708e2b59
commit bdf2f802c0

View File

@@ -1,4 +1,4 @@
{ inputs, pkgs, config, ... }:
{ inputs, pkgs, config, lib, ... }:
{
imports = [
@@ -108,7 +108,7 @@
ensurePermissions."DATABASE hedgedoc" = "ALL PRIVILEGES";
}
];
authentication = pkgs.lib.mkOverride 10 ''
authentication = lib.mkForce ''
#type database DBuser auth-method
local all all trust
'';