No right click menu, added binfmt
This commit is contained in:
+1
-1
Submodule azos-core updated: 5836f95d64...3d1cbc3323
@@ -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"];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
imports = [./audio.nix ./bluetooth.nix ./steam.nix ./virtualization.nix];
|
imports = [./audio.nix ./binfmt.nix ./bluetooth.nix ./steam.nix ./virtualization.nix];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user