Remove ornithologist

This commit is contained in:
Fern Garden 2025-09-20 14:26:53 +08:00
parent 4fcbdd7e9e
commit 956d57272b
2 changed files with 0 additions and 20 deletions

View file

@ -86,11 +86,6 @@
suite = "server/vm"; suite = "server/vm";
}) })
# VM for managing flock.
(mkHost "ornithologist" {
suite = "server/vm";
})
# Container running Technitium DNS Server. # Container running Technitium DNS Server.
(mkHost "technitium" { (mkHost "technitium" {
suite = "server/lxc"; suite = "server/lxc";
@ -105,10 +100,5 @@
(mkHost "nextcloud" { (mkHost "nextcloud" {
suite = "server/lxc"; suite = "server/lxc";
}) })
# VM for managing server flock.
(mkHost "ornithologist" {
suite = "server/vm";
})
]; ];
} }

View file

@ -1,10 +0,0 @@
{pkgs, ...}: {
# Install some packages.
environment.systemPackages = with pkgs; [deploy-rs];
# Allow emulating aarch64 to build for Raspberry Pi.
boot.binfmt.emulatedSystems = ["aarch64-linux"];
# Enable docker.
flock.docker.enable = true;
}