mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
11 lines
301 B
Nix
11 lines
301 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;
|
|
nixosPath = "${nixpkgsSrc}/nixos";
|
|
};
|
|
in pkgs.recurseIntoAttrs release
|