mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
21 lines
427 B
Nix
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";
|
|
};
|
|
};
|
|
}
|