nixos/systems/nomad-client1/default.nix

13 lines
282 B
Nix

{ 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"
];
}