infrastructure/config/hosts/yule/meta.nix
2021-07-06 01:00:41 +01:00

22 lines
440 B
Nix

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