nixos/systems/nomad-master1/default.nix

13 lines
283 B
Nix

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