diff options
author | Christian Kögler <ck3d@gmx.de> | 2021-11-09 21:49:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 21:49:45 +0100 |
commit | 33ffba995d853658fb4db5f63ffb8ddc454c666f (patch) | |
tree | b73ffb52f6f46ce1c05cc61dccf60ae6954a7777 /nixos | |
parent | 584c5fc24dde90371269008ae5786fcd76dc16c8 (diff) |
NixOS: Document impurity issues with boot.binfmt.emulatedSystems (#142778)
* NixOS: Document impurity issues with boot.binfmt.emulatedSystems * Update nixos/modules/system/boot/binfmt.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * Update nixos/modules/system/boot/binfmt.nix Co-authored-by: Moritz Hedtke <13287984+mohe2015@users.noreply.github.com> * Update nixos/modules/system/boot/binfmt.nix Co-authored-by: Moritz Hedtke <13287984+mohe2015@users.noreply.github.com> * Update nixos/modules/system/boot/binfmt.nix Co-authored-by: markuskowa <markus.kowalewski@gmail.com> * Apply suggestions from code review Co-authored-by: markuskowa <markus.kowalewski@gmail.com> Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Moritz Hedtke <13287984+mohe2015@users.noreply.github.com> Co-authored-by: markuskowa <markus.kowalewski@gmail.com>
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/system/boot/binfmt.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/system/boot/binfmt.nix b/nixos/modules/system/boot/binfmt.nix index 2408ecc80d22b..fdb4d0e4c7fb3 100644 --- a/nixos/modules/system/boot/binfmt.nix +++ b/nixos/modules/system/boot/binfmt.nix @@ -248,6 +248,7 @@ in { description = '' List of systems to emulate. Will also configure Nix to support your new systems. + Warning: the builder can execute all emulated systems within the same build, which introduces impurities in the case of cross compilation. ''; type = types.listOf types.str; }; |