mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-13 00:20:07 +01:00
12 lines
312 B
Nix
12 lines
312 B
Nix
let
|
|
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;
|
|
e2e = false;
|
|
nixosPath = "${nixpkgsSrc}/nixos";
|
|
};
|
|
in with lib; release.tests
|