From e73d74951d62973f476575eb2d8499e10c5e162e Mon Sep 17 00:00:00 2001 From: Philipp Hochkamp Date: Fri, 24 Feb 2023 21:35:26 +0100 Subject: [PATCH] chore: fix nix-path for darwin --- darwin-common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/darwin-common.nix b/darwin-common.nix index 31e107d8..b50cda69 100644 --- a/darwin-common.nix +++ b/darwin-common.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: { +{ config, pkgs, inputs, ... }: { programs.gnupg.agent.enable = true; programs.zsh.enable = true; environment.pathsToLink = [ "/share/zsh" ]; @@ -7,6 +7,7 @@ nix.settings.cores = 0; # use all cores nix.settings.max-jobs = 10; # use all cores nix.distributedBuilds = true; + nix.nixPath = [{ nixpkgs = "${inputs.nixpkgs}"; }]; nix.buildMachines = [{ systems = [ "x86_64-linux" ]; supportedFeatures = [ "kvm" "big-parallel" ];