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