Skip to content

Commit

Permalink
tests: fix unused importPath in unfreeNixpkgs function
Browse files Browse the repository at this point in the history
* originally importPath in the unfreeNixpkgs function was not used at all.
  this commit fixes the issue, allowing the function to work as intended.
  • Loading branch information
soopyc committed Nov 2, 2024
1 parent f6e0cd5 commit 2e22e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

unfreeNixpkgs =
importPath:
import inputs.nixos-unstable-small {
import importPath {
config = {
allowBroken = true;
allowUnfree = true;
Expand All @@ -71,7 +71,7 @@
overlays = [ ];
inherit system;
};
nixpkgsUnstable = unfreeNixpkgs inputs'.nixos-unstable-small;
nixpkgsUnstable = unfreeNixpkgs inputs.nixos-unstable-small;
nixpkgsStable = unfreeNixpkgs inputs.nixos-stable;

checksForNixpkgs =
Expand Down

0 comments on commit 2e22e4a

Please sign in to comment.