diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-29 12:22:16 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-29 12:22:16 +0100 |
commit | 7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1 (patch) | |
tree | 352b8004074f89936b1990f202eb6f5bc8866383 /tests/infrastructure | |
parent | fix(modules/xdg): Migrate to the merged xdg-desktop-terminal-filechooser (diff) | |
download | nixos-config-7ccb3cd0ff72ea3229d32ccdec6269f5845e06c1.zip |
fix(modules/nvim/plgs/lf-nvim): Use the package from my nixpgks pr
Diffstat (limited to 'tests/infrastructure')
-rw-r--r-- | tests/infrastructure/default.nix | 10 |
1 files changed, 8 insertions, 2 deletions
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; |