From 59eae7f3d087f7999278b7bf8eae0ba8ba55a6ec Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 12 Mar 2026 15:13:24 +0100 Subject: [PATCH] tests/ldap: remove redundant settings All of thsese are already option defaults. --- tests/ldap.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/tests/ldap.nix b/tests/ldap.nix index 8349d70..a67362b 100644 --- a/tests/ldap.nix +++ b/tests/ldap.nix @@ -11,17 +11,10 @@ in { pkgs, ... }: { imports = [ - ./../default.nix + ../default.nix ./lib/config.nix ]; - virtualisation.memorySize = 1024; - - services.openssh = { - enable = true; - settings.PermitRootLogin = "yes"; - }; - environment.systemPackages = [ (pkgs.writeScriptBin "mail-check" '' ${pkgs.python3}/bin/python ${../scripts/mail-check.py} $@ @@ -116,11 +109,6 @@ in forwards = { "bob_fw@example.com" = "bob@example.com"; }; - - vmailGroupName = "vmail"; - vmailUID = 5000; - - enableImap = false; }; }; };