mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
25 lines
520 B
Nix
25 lines
520 B
Nix
{ depot, lib, config, ... }: with lib; {
|
|
config = {
|
|
deploy.targets.infra = {
|
|
tf = {
|
|
resources.athame = {
|
|
provider = "null";
|
|
type = "resource";
|
|
connection = {
|
|
port = 62954;
|
|
host = "athame.kittywit.ch";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
network.nodes.athame = {
|
|
imports = lib.hostImport {
|
|
hostName = "athame";
|
|
inherit (depot) profiles;
|
|
};
|
|
networking = {
|
|
hostName = "athame";
|
|
};
|
|
};
|
|
};
|
|
}
|