1{ lib, pkgs, config, ... }:
2
3{
4 _module.args = {
5 pkgs_i686 = import ../../.. {
6 system = "i686-linux";
7 # FIXME: we enable config.allowUnfree to make packages like
8 # nvidia-x11 available. This isn't a problem because if the user has
9 # ‘nixpkgs.config.allowUnfree = false’, then evaluation will fail on
10 # the 64-bit package anyway. However, it would be cleaner to respect
11 # nixpkgs.config here.
12 config.allowUnfree = true;
13 };
14
15 utils = import ../../lib/utils.nix pkgs;
16 };
17}