20 lines
351 B
Nix
20 lines
351 B
Nix
{ pkgs, ... }:
|
|
let
|
|
terraform' = pkgs.terraform.overrideAttrs (_: { meta = { }; });
|
|
in
|
|
{
|
|
devShells = {
|
|
terraform = with pkgs; mkShellNoCC {
|
|
packages = [
|
|
(terraform'.withPlugins (p: [
|
|
p.cloudflare
|
|
p.external
|
|
p.hydra
|
|
p.null
|
|
p.sops
|
|
p.tfe
|
|
]))
|
|
];
|
|
};
|
|
};
|
|
}
|