No right click menu, added binfmt

This commit is contained in:
2026-04-23 14:49:49 +03:00
parent a6c4cc7922
commit 91c775a6c3
3 changed files with 21 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.binfmt.enable;
in {
options.azos.binfmt.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
boot.binfmt.emulatedSystems = ["aarch64-linux"];
};
}