summary refs log tree commit diff
path: root/nixos/modules/virtualisation/parallels-guest.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-03 00:55:57 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-11-03 00:56:39 -0500
commit4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed (patch)
tree5e3bc7683f60afdc70bc0e201d05aca858b1896f /nixos/modules/virtualisation/parallels-guest.nix
parentb3ab4d1f8e6fc6897fe561039b14d360fe8164f8 (diff)
downloadnixpkgs-4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed.tar
nixpkgs-4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed.tar.gz
nixpkgs-4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed.tar.bz2
nixpkgs-4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed.tar.lz
nixpkgs-4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed.tar.xz
nixpkgs-4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed.tar.zst
nixpkgs-4a8fc5b9aaa486e6bd5f81a60c3def4be675b4ed.zip
treewide: remove pkgs_i686
This was getting evaluated eagerly causing assertion failures in
aarch64 systems. We can replace usages of pkgs_i686 with
pkgs.pkgsi686Linux.
Diffstat (limited to 'nixos/modules/virtualisation/parallels-guest.nix')
-rw-r--r--nixos/modules/virtualisation/parallels-guest.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/virtualisation/parallels-guest.nix b/nixos/modules/virtualisation/parallels-guest.nix
index 36ca7f356d4..4e0f2cae299 100644
--- a/nixos/modules/virtualisation/parallels-guest.nix
+++ b/nixos/modules/virtualisation/parallels-guest.nix
@@ -1,4 +1,4 @@
-{ config, lib, pkgs, pkgs_i686, ... }:
+{ config, lib, pkgs, ... }:
 
 with lib;
 
@@ -64,7 +64,7 @@ in
     };
 
     hardware.opengl.package = prl-tools;
-    hardware.opengl.package32 = pkgs_i686.linuxPackages.prl-tools.override { libsOnly = true; kernel = null; };
+    hardware.opengl.package32 = pkgs.pkgsi686Linux.linuxPackages.prl-tools.override { libsOnly = true; kernel = null; };
 
     services.udev.packages = [ prl-tools ];