From bdf2f802c0d214876926125bd3cabb340ecd3227 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Wed, 1 Nov 2023 16:59:14 +0100 Subject: [PATCH] Use mkForce instead of mkOverride --- nixos-configurations/server/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos-configurations/server/default.nix b/nixos-configurations/server/default.nix index fef9182..798eb5e 100644 --- a/nixos-configurations/server/default.nix +++ b/nixos-configurations/server/default.nix @@ -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 '';