infrastructure/depot/hosts/beltane/meta.nix
2021-08-09 02:41:43 +01:00

26 lines
524 B
Nix

{ lib, config, depot, ... }: with lib; {
config = {
deploy.targets.beltane = {
tf = {
resources.beltane = {
provider = "null";
type = "resource";
connection = {
port = 62954;
host = "192.168.1.223";
};
};
};
};
network.nodes.beltane = {
imports = lib.hostImport {
hostName = "beltane";
inherit (depot) profiles;
};
networking = {
hostName = "beltane";
};
};
};
}