infrastructure/hosts/ostara/meta.nix
2021-04-14 01:23:05 +01:00

18 lines
458 B
Nix

{ config, hosts, ... }: {
config = {
resources.ostara = {
provider = "null";
type = "resource";
connection = {
port = 62954;
host = "192.168.1.245";
};
};
deploy.systems.ostara = with config.resources; {
nixosConfig = hosts.ostara.config;
connection = ostara.connection.set;
triggers.copy.ostara = ostara.refAttr "id";
triggers.secrets.ostara = ostara.refAttr "id";
};
};
}