Prepare ornithologist to do remote deployments

This commit is contained in:
Fern Garden 2025-07-22 10:26:54 +08:00
parent 2951844f13
commit ef9e19c0e8
3 changed files with 8 additions and 6 deletions

View file

@ -1,3 +1,9 @@
{
## Placeholder...
{pkgs, ...}: {
# Install some packages.
environment.systemPackages = with pkgs; [
deploy-rs
];
# Allows remote deployment on ARM systems (ie. Raspberry Pi).
boot.binfmt.emulatedSystems = ["aarch64-linux"];
}