diff options
| author | Domen Kožar <domen@dev.si> | 2022-08-22 09:50:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-22 09:50:59 +0200 |
| commit | 0ea12427211deb67ec825889f04ef028fd230bf1 (patch) | |
| tree | 666d3743504e69c8b25e14396296bf0baebb777b /modules | |
| parent | 80871c71edb3da76d40bdff9cae007a2a035c074 (diff) | |
| parent | 2120245fc210af504686da80ea3dfff27ef22b9e (diff) | |
Merge pull request #491 from yonran/387-no-developer-tools-were-found
Fix nix-rebuild --flake without XCode command line tools
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/nix/nix-darwin.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nix/nix-darwin.nix b/modules/nix/nix-darwin.nix index 69da8e7..f86b154 100644 --- a/modules/nix/nix-darwin.nix +++ b/modules/nix/nix-darwin.nix @@ -5,7 +5,7 @@ with lib; let inherit (pkgs) stdenv; - extraPath = lib.makeBinPath [ config.nix.package pkgs.coreutils pkgs.jq ]; + extraPath = lib.makeBinPath [ config.nix.package pkgs.coreutils pkgs.jq pkgs.git ]; writeProgram = name: env: src: pkgs.substituteAll ({ |
