1
0
Fork 0
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:
Cassie Cheung 2024-11-03 00:51:41 +08:00
parent f6e0cd5c47
commit 2e22e4ad70
No known key found for this signature in database

View file

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