This commit is contained in:
2026-03-02 16:35:14 +01:00
parent d182532b34
commit a9aed244fb
17 changed files with 699 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" ];
};
}