about summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-29 12:22:16 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-29 12:22:16 +0100
commit7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1 (patch)
tree352b8004074f89936b1990f202eb6f5bc8866383 /tests
parentfix(modules/xdg): Migrate to the merged xdg-desktop-terminal-filechooser (diff)
downloadnixos-config-7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1.zip
fix(modules/nvim/plgs/lf-nvim): Use the package from my nixpgks pr
Diffstat (limited to 'tests')
-rw-r--r--tests/default.nix4
-rw-r--r--tests/infrastructure/default.nix10
2 files changed, 12 insertions, 2 deletions
diff --git a/tests/default.nix b/tests/default.nix
index c36a5906..af004feb 100644
--- a/tests/default.nix
+++ b/tests/default.nix
@@ -6,6 +6,8 @@
   nixpkgs_as_input,
   sysLib,
   extraModules,
+  nixpkgs_open_prs,
+  system,
 }: let
   mkTest = import ./infrastructure {
     inherit
@@ -15,6 +17,8 @@
       myPkgs
       extraModules
       sysLib
+      nixpkgs_open_prs
+      system
       ;
   };
 
diff --git a/tests/infrastructure/default.nix b/tests/infrastructure/default.nix
index e0ad6889..9e6ab08c 100644
--- a/tests/infrastructure/default.nix
+++ b/tests/infrastructure/default.nix
@@ -5,7 +5,8 @@
   nixos-lib,
   extraModules,
   sysLib,
-  ...
+  nixpkgs_open_prs,
+  system,
 }: {
   name,
   configuration,
@@ -22,7 +23,12 @@ nixos-lib.runTest {
 
   node = {
     specialArgs = {
-      inherit myPkgs sysLib;
+      inherit
+        myPkgs
+        sysLib
+        nixpkgs_open_prs
+        system
+        ;
     };
     # Use the nixpkgs as constructed by the `nixpkgs.*` options
     pkgs = null;