infrastructure/hive.nix

22 lines
366 B
Nix
Raw Normal View History

2023-05-16 23:50:06 +02:00
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";
};
};
}