mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-13 00:20:07 +01:00
11 lines
284 B
Nix
11 lines
284 B
Nix
let
|
|
nixpkgsSrc = builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/master.tar.gz";
|
|
pkgs = import nixpkgsSrc {};
|
|
|
|
lib = pkgs.lib;
|
|
|
|
release = import ./release.nix {
|
|
inherit pkgs lib;
|
|
nixosPath = "${nixpkgsSrc}/nixos";
|
|
};
|
|
in pkgs.recurseIntoAttrs release
|