22 lines
366 B
Nix
22 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";
|
||
|
};
|
||
|
};
|
||
|
}
|