summary refs log tree commit diff
path: root/nixos/tests/certmgr.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/certmgr.nix')
-rw-r--r--nixos/tests/certmgr.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/nixos/tests/certmgr.nix b/nixos/tests/certmgr.nix
index 8354c46b85f..fe67833808c 100644
--- a/nixos/tests/certmgr.nix
+++ b/nixos/tests/certmgr.nix
@@ -1,6 +1,9 @@
-{ system ? builtins.currentSystem }:
+{ system ? builtins.currentSystem,
+  config ? {},
+  pkgs ? import ../.. { inherit system config; }
+}:
 
-with import ../lib/testing.nix { inherit system; };
+with import ../lib/testing.nix { inherit system pkgs; };
 let
   mkSpec = { host, service ? null, action }: {
     inherit action;