diff options
author | Ben Sima <ben@bsima.me> | 2023-08-02 16:35:34 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-08-02 16:40:05 -0400 |
commit | 8ac03ae2c82b07381292ede57431ddddd0d4dbe4 (patch) | |
tree | 04e3fa5c8a2c4218167db36894d8a40ee3995d4d /Biz/Bild.nix | |
parent | b154d6b3be99a4a9f5907c84645ca569183bb40e (diff) |
Fix nix syntax to include pkgs
Diffstat (limited to 'Biz/Bild.nix')
-rw-r--r-- | Biz/Bild.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Bild.nix b/Biz/Bild.nix index 34d8174..415931b 100644 --- a/Biz/Bild.nix +++ b/Biz/Bild.nix @@ -40,7 +40,7 @@ rec { inherit (nixpkgs) lib stdenv sources; # expose some packages for inclusion in os/image builds - pkgs = with nixpkgs.pkgs; [ git ]; + pkgs = with nixpkgs.pkgs; { inherit git; }; # remove this when I switch to all-nix builds bildRuntimeDeps = with nixpkgs; [ |