nixos/systems/proxy/default.nix

12 lines
230 B
Nix
Raw Normal View History

2022-02-28 21:19:55 +01:00
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "proxy";
ip = "10.7.89.100";
inherit inputs;
})
"${inputs.self}/modules/haproxy"
];
}