docker.nix: Use 'with'
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
93f7fb6e74
commit
c1bf9e39f1
1 changed files with 14 additions and 14 deletions
28
docker.nix
28
docker.nix
|
@ -19,20 +19,20 @@ let
|
||||||
}.${crossSystem}
|
}.${crossSystem}
|
||||||
else pkgs;
|
else pkgs;
|
||||||
|
|
||||||
defaultPkgs = [
|
defaultPkgs = with targetPkgs; [
|
||||||
targetPkgs.nix
|
nix
|
||||||
targetPkgs.bashInteractive
|
bashInteractive
|
||||||
targetPkgs.coreutils-full
|
coreutils-full
|
||||||
targetPkgs.gnutar
|
gnutar
|
||||||
targetPkgs.gzip
|
gzip
|
||||||
targetPkgs.gnugrep
|
gnugrep
|
||||||
targetPkgs.which
|
which
|
||||||
targetPkgs.curl
|
curl
|
||||||
targetPkgs.less
|
less
|
||||||
targetPkgs.wget
|
wget
|
||||||
targetPkgs.man
|
man
|
||||||
targetPkgs.cacert.out
|
cacert.out
|
||||||
targetPkgs.findutils
|
findutils
|
||||||
];
|
];
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
|
|
Loading…
Reference in a new issue