mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 03:19:42 +01:00
Merge pull request #1226 from soopyc/fix-tests
tests: fix unused importPath in unfreeNixpkgs function
This commit is contained in:
commit
1b0b927860
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