mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-14 23:19:41 +01:00
tests: fix unused importPath in unfreeNixpkgs function
* originally importPath in the unfreeNixpkgs function was not used at all. this commit fixes the issue, allowing the function to work as intended.
This commit is contained in:
parent
f6e0cd5c47
commit
2e22e4ad70
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@
|
|||
|
||||
unfreeNixpkgs =
|
||||
importPath:
|
||||
import inputs.nixos-unstable-small {
|
||||
import importPath {
|
||||
config = {
|
||||
allowBroken = true;
|
||||
allowUnfree = true;
|
||||
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue