New host, beltane

This commit is contained in:
kat witch 2021-07-31 06:08:25 +01:00
parent acdb3c4a04
commit 85226f016e
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
7 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, config, ... }: with lib; {
config = {
deploy.targets.beltane = {
nodeNames = lib.singleton "beltane";
tf = {
resources.beltane = {
provider = "null";
type = "resource";
connection = {
port = 62954;
host = "192.168.1.223";
};
};
};
};
network.nodes.beltane = {
imports = lib.hostImport "beltane";
networking = {
hostName = "beltane";
};
};
};
}