portable-binary-cache/hive.nix

22 lines
366 B
Nix
Raw Normal View History

let
npins = import ./npins;
in
{
meta = {
nixpkgs = import npins.nixpkgs {
overlays = [
(import "${npins.binary-cache}/pkgs/overlay.nix")
];
};
};
binary-cache = { ... }: {
imports = [
./binary-cache
"${npins.binary-cache}/modules"
];
deployment.targetHost = "2001:678:9ec:32:202:c9ff:fe9d:ed64";
};
}