Skip to content

Commit

Permalink
docker.nix: Use 'with'
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro <[email protected]>
  • Loading branch information
2 people authored and garbas committed Nov 11, 2021
1 parent 93f7fb6 commit c1bf9e3
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions docker.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ let
}.${crossSystem}
else pkgs;

defaultPkgs = [
targetPkgs.nix
targetPkgs.bashInteractive
targetPkgs.coreutils-full
targetPkgs.gnutar
targetPkgs.gzip
targetPkgs.gnugrep
targetPkgs.which
targetPkgs.curl
targetPkgs.less
targetPkgs.wget
targetPkgs.man
targetPkgs.cacert.out
targetPkgs.findutils
defaultPkgs = with targetPkgs; [
nix
bashInteractive
coreutils-full
gnutar
gzip
gnugrep
which
curl
less
wget
man
cacert.out
findutils
];

users = {
Expand Down

0 comments on commit c1bf9e3

Please sign in to comment.