feat(build): Add dependencies for custom repo clones

Adds git & SSH as part of the Nixery image, which are required to use
Nix's builtins.fetchGit.

The dependency on interactive tools is dropped, as it was only
required during development when debugging the image building process
itself.
This commit is contained in:
Vincent Ambo 2019-07-31 00:39:31 +01:00 committed by Vincent Ambo
parent 2e4b1f85ee
commit a83701a14b

View file

@ -94,13 +94,13 @@ rec {
name = "nixery";
config.Cmd = ["${nixery-launch-script}/bin/nixery"];
contents = [
bashInteractive
cacert
coreutils
nix
nixery-launch-script
git
gnutar
gzip
nix
nixery-launch-script
openssh
];
};
}