Remove an unused system

This commit is contained in:
Andreas Zweili 2022-09-12 18:13:24 +02:00
parent 6da69b8bf3
commit 7ded32df40
2 changed files with 0 additions and 18 deletions

View File

@ -88,10 +88,6 @@
hostname = "restic-server";
inherit custom inputs;
};
test-server = mkComputer {
hostname = "test-server";
inherit custom inputs;
};
ttrss = mkComputer {
hostname = "ttrss";
inherit custom inputs;

View File

@ -1,14 +0,0 @@
{ custom, hostname, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
ip = "10.7.89.142";
inherit hostname inputs;
})
(import "${inputs.self}/modules/nginx-acme" {
domain = "test.2li.ch";
inherit inputs;
})
"${inputs.self}/modules/docker"
];
}