infra/shell.nix
2023-02-11 17:00:31 +01:00

31 lines
406 B
Nix

{ config
, pkgs
}:
with pkgs;
mkShellNoCC {
buildInputs = [
(terraform.withPlugins (
p: [
p.cloudflare
p.external
p.gandi
p.hydra
p.null
p.sops
p.tfe
]
))
jq
sops
ssh-to-age
(python3.withPackages (
p: [
p.deploykit
p.invoke
]
))
rsync
config.treefmt.build.wrapper
];
}