Fediversity/launch/.terraform/modules/peertube.deploy/shell.nix

21 lines
357 B
Nix

with import <nixpkgs> {};
let
tf = terraform.withPlugins(p: with p; [
external
google
p.null
random
]);
# https://github.com/NixOS/nixpkgs/pull/51579
terraform-docs = callPackage ./nix/terraform-docs {};
in
mkShell {
buildInputs = [
tf
terraform-docs
];
shellHook = ''
NIX_PATH=nixpkgs=channel:nixos-18.09
'';
}