From 68cc049766ae23622c4238a08c1921fe3888a048 Mon Sep 17 00:00:00 2001 From: Fern Garden Date: Tue, 16 Sep 2025 13:21:30 +0800 Subject: [PATCH] ornithologist host config --- hosts/ornithologist/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hosts/ornithologist/default.nix b/hosts/ornithologist/default.nix index 2c63c08..ae36071 100644 --- a/hosts/ornithologist/default.nix +++ b/hosts/ornithologist/default.nix @@ -1,2 +1,10 @@ -{ +{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; }