2014-05-06 14:31:48 +00:00
|
|
|
|
{ lib, pkgs, config, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2015-03-12 22:19:23 +00:00
|
|
|
|
_module.args = {
|
2015-08-05 15:29:08 +00:00
|
|
|
|
pkgs_i686 = import ../../.. {
|
2014-05-06 14:31:48 +00:00
|
|
|
|
system = "i686-linux";
|
2015-09-02 23:16:41 +00:00
|
|
|
|
# FIXME: we enable config.allowUnfree to make packages like
|
|
|
|
|
# nvidia-x11 available. This isn't a problem because if the user has
|
|
|
|
|
# ‘nixpkgs.config.allowUnfree = false’, then evaluation will fail on
|
|
|
|
|
# the 64-bit package anyway. However, it would be cleaner to respect
|
|
|
|
|
# nixpkgs.config here.
|
2014-05-06 14:31:48 +00:00
|
|
|
|
config.allowUnfree = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
utils = import ../../lib/utils.nix pkgs;
|
|
|
|
|
};
|
|
|
|
|
}
|