mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
17 lines
442 B
Nix
17 lines
442 B
Nix
{ config, lib, kw, ... }: with lib; {
|
|
deploy.targets.infra = {
|
|
tf = {
|
|
resources.athame = {
|
|
provider = "null";
|
|
type = "resource";
|
|
connection = {
|
|
port = head config.network.nodes.athame.services.openssh.ports;
|
|
host = config.network.nodes.athame.network.addresses.public.ipv4.address;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
network.nodes.athame = {
|
|
imports = kw.nodeImport "athame";
|
|
};
|
|
}
|