25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
202 B

  1. with import <nixpkgs> { };
  2. let
  3. t = terraform.withPlugins (p: [
  4. p.libvirt
  5. p.local
  6. p.null
  7. p.random
  8. p.shell
  9. p.template
  10. p.tls
  11. ]);
  12. in
  13. mkShell {
  14. buildInputs = [ gnumake ];
  15. }