nixos/systems/test-server/default.nix

15 lines
323 B
Nix
Raw Normal View History

2022-09-06 23:03:29 +02:00
{ custom, hostname, inputs, pkgs, ... }:
2022-05-04 23:11:05 +02:00
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
ip = "10.7.89.142";
2022-09-06 23:03:29 +02:00
inherit hostname inputs;
2022-05-04 23:11:05 +02:00
})
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"
];
}