mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
pass nixos path explicitly
This commit is contained in:
parent
7b148cd171
commit
e4493addd8
4 changed files with 15 additions and 9 deletions
8
ci.nix
8
ci.nix
|
|
@ -1,7 +1,11 @@
|
|||
let
|
||||
pkgs = import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz") {};
|
||||
nixpkgsSrc = builtins.fetchTarball "https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz";
|
||||
pkgs = import nixpkgsSrc {};
|
||||
|
||||
lib = pkgs.lib;
|
||||
|
||||
release = import ./release.nix { inherit pkgs lib; };
|
||||
release = import ./release.nix {
|
||||
inherit pkgs lib;
|
||||
nixosPath = "${nixpkgsSrc}/nixos";
|
||||
};
|
||||
in with lib; release.test-results
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue