7 lines
206 B
Nix
7 lines
206 B
Nix
{pkgs, ...}: {
|
|
# Allow emulating aarch64 to build for Raspberry Pi.
|
|
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
|
|
|
# Install some packages.
|
|
environment.systemPackages = with pkgs; [deploy-rs];
|
|
}
|