This commit is contained in:
2026-03-02 16:35:14 +01:00
parent d182532b34
commit d80bd6e023
16 changed files with 680 additions and 52 deletions

View File

@@ -0,0 +1,14 @@
{
lib,
config,
...
}:
{
options = {
aarch64-vm.enable = lib.mkEnableOption "aarch64 virtualisation support";
};
config = lib.mkIf config.aarch64-vm.enable {
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
};
}