mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
12 lines
285 B
Nix
12 lines
285 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
|