add new systems

This commit is contained in:
Andreas Zweili 2022-03-07 22:36:55 +01:00
parent 5f52293916
commit 4ce17f3cca
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "nomad-agent1";
ip = "10.7.89.141";
inherit inputs;
})
"${inputs.self}/modules/data-share"
"${inputs.self}/modules/nomad-client"
];
}

View File

@ -0,0 +1,12 @@
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "nomad-master1";
ip = "10.7.89.140";
inherit inputs;
})
"${inputs.self}/modules/data-share"
"${inputs.self}/modules/nomad-master"
];
}