Emulate aarch64-linux on nix-box-june to be able to build aarch64 pkgs

This commit is contained in:
June 2024-06-06 20:17:00 +02:00
parent 41f04732c2
commit 9d7f9d0ec8
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,7 @@
{
imports = [
./configuration.nix
./emulated-systems.nix
./networking.nix
./users.nix
];

View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
}