Add a test-server

This commit is contained in:
Andreas Zweili 2022-05-04 23:11:05 +02:00
parent 76904c227c
commit 9d1b06558b
2 changed files with 14 additions and 0 deletions

View File

@ -159,6 +159,9 @@
restic-server = mkComputer {
hostname = "restic-server";
};
test-server = mkComputer {
hostname = "test-server";
};
ttrss = mkComputer {
hostname = "ttrss";
};

View File

@ -0,0 +1,11 @@
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "test-server";
ip = "10.7.89.142";
inherit inputs;
})
"${inputs.self}/modules/docker"
];
}