nixos/systems/test-server/default.nix

16 lines
344 B
Nix
Raw Normal View History

2022-05-04 23:11:05 +02:00
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "test-server";
ip = "10.7.89.142";
inherit inputs;
})
2022-05-17 22:12:19 +02:00
(import "${inputs.self}/modules/nginx-acme" {
domain = "test.2li.ch";
2022-05-31 22:40:01 +02:00
inherit inputs;
2022-05-17 22:12:19 +02:00
})
2022-05-04 23:11:05 +02:00
"${inputs.self}/modules/docker"
];
}