From 956d57272bb505e83eb71e0662b8fc1237fbe239 Mon Sep 17 00:00:00 2001 From: Fern Garden Date: Sat, 20 Sep 2025 14:26:53 +0800 Subject: [PATCH] Remove ornithologist --- flake.nix | 10 ---------- hosts/ornithologist/default.nix | 10 ---------- 2 files changed, 20 deletions(-) delete mode 100644 hosts/ornithologist/default.nix diff --git a/flake.nix b/flake.nix index a00c41b..17db88a 100755 --- a/flake.nix +++ b/flake.nix @@ -86,11 +86,6 @@ suite = "server/vm"; }) - # VM for managing flock. - (mkHost "ornithologist" { - suite = "server/vm"; - }) - # Container running Technitium DNS Server. (mkHost "technitium" { suite = "server/lxc"; @@ -105,10 +100,5 @@ (mkHost "nextcloud" { suite = "server/lxc"; }) - - # VM for managing server flock. - (mkHost "ornithologist" { - suite = "server/vm"; - }) ]; } diff --git a/hosts/ornithologist/default.nix b/hosts/ornithologist/default.nix deleted file mode 100644 index ae36071..0000000 --- a/hosts/ornithologist/default.nix +++ /dev/null @@ -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; -}