infrastructure/hive.nix
2023-05-17 00:56:53 +02:00

21 lines
366 B
Nix

let
sources = import ./npins;
in
{
meta = {
nixpkgs = import sources.nixpkgs;
nodeNixpkgs = {
};
# TODO: Add remote builders (`machinesFile` option)
};
web-01 = { name, nodes, ... }: {
imports = [ ./machines/${name}/configuration.nix ];
deployment = {
targetUser = "root";
targetHost = "129.199.129.200";
};
};
}