about summary refs log tree commit diff
path: root/darwin/darwin-x86.nix
blob: 30baf239a6d4f6f268495b88fc7907d3f5aa4ea6 (plain)
1
2
3
4
5
6
7
8
{ unstable, ... }:

final: prev: prev.lib.optionalAttrs (prev.stdenv.system == "aarch64-darwin") {
  # Add access to x86 packages system is running Apple Silicon
  pkgs-x86 = import unstable {
    system = "x86_64-darwin";
  };
}