diff --git a/ci/basic.nix b/ci/basic.nix index e3c06fe..16153c3 100644 --- a/ci/basic.nix +++ b/ci/basic.nix @@ -1,9 +1,10 @@ -{ ... }: +{ + nixpkgs +, deviceName +, ... }: let - # is set to the value designated by the nixpkgs input of the - # jobset configuration. - pkgs = (import {}); - device = import ; + pkgs = (import nixpkgs {}); + device = import "${}/${deviceName}"; liminix-config = import ; liminix = import { inherit device liminix-config; }; in {