Add ornithologist LXC

This commit is contained in:
Fern Garden 2025-08-29 11:21:06 +08:00
parent ecbddad7a7
commit b23046ea5d
4 changed files with 15 additions and 3 deletions

View file

@ -39,6 +39,9 @@ with lib; {
];
};
# Allow emulating aarch64 to build for Raspberry Pi.
boot.binfmt.emulatedSystems = ["aarch64-linux"];
# Share Music dir.
services.samba = {
enable = true;

View file

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