summary refs log tree commit diff
path: root/nixos/modules/misc/extra-arguments.nix
blob: c2c8903546d537550a7442283109a0f3dfb8cc42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, pkgs, config, ... }:

{
  _module.args = {
    modulesPath = ../.;

    pkgs_i686 = import ../../lib/nixpkgs.nix {
      system = "i686-linux";
      config.allowUnfree = true;
    };

    utils = import ../../lib/utils.nix pkgs;
  };
}