mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
22 lines
464 B
Nix
22 lines
464 B
Nix
{ lib, config, ... }: with lib; {
|
|
config = {
|
|
deploy.targets.personal = {
|
|
tf = {
|
|
resources.ostara = {
|
|
provider = "null";
|
|
type = "resource";
|
|
connection = {
|
|
port = 62954;
|
|
host = "192.168.1.245";
|
|
};
|
|
};
|
|
};
|
|
network.nodes.samhain = {
|
|
imports = lib.hostImport "samhain";
|
|
networking = {
|
|
hostName = "samhain";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|