mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
nixos/virtualisation.docker: Do not assert 32 bit libraries available on ARM (#246179)
This commit is contained in:
parent
e8fb7eec13
commit
09d32e2612
1 changed files with 2 additions and 2 deletions
|
@ -236,8 +236,8 @@ in
|
|||
};
|
||||
|
||||
assertions = [
|
||||
{ assertion = cfg.enableNvidia -> config.hardware.opengl.driSupport32Bit or false;
|
||||
message = "Option enableNvidia requires 32bit support libraries";
|
||||
{ assertion = cfg.enableNvidia && pkgs.stdenv.isx86_64 -> config.hardware.opengl.driSupport32Bit or false;
|
||||
message = "Option enableNvidia on x86_64 requires 32bit support libraries";
|
||||
}];
|
||||
|
||||
virtualisation.docker.daemon.settings = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue