I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
141 B

  1. { pkgs ? import <nixpkgs> { } }:
  2. with pkgs;
  3. mkShell {
  4. buildInputs = [
  5. docker-compose
  6. docker-machine
  7. ];
  8. shellHook = ''
  9. '';
  10. }