1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Emulate arm, riscv and x86_64 linux

This commit is contained in:
RGBCube 2024-05-14 23:38:34 +03:00
parent 01f284a446
commit 198c7da772
No known key found for this signature in database

View file

@ -0,0 +1,9 @@
{ config, lib, ... }: with lib;
systemConfiguration {
boot.binfmt.emulatedSystems = remove config.nixpkgs.hostPlatform.system [
"aarch64-linux"
"riscv64-linux"
"x86_64-linux"
];
}