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

21 lines
427 B
Nix

{ lib, config, ... }: with lib; {
deploy.targets.mabon = {
nodeNames = lib.singleton "mabon";
tf = {
resources.mabon = {
provider = "null";
type = "resource";
connection = {
port = 62954;
host = "192.168.1.119";
};
};
};
};
network.nodes.mabon = {
imports = lib.hostImport "mabon";
networking = {
hostName = "mabon";
};
};
}