infra/shell.nix
zimbatm 92a43cb33d
remove keys/zimbatm.asc
This GPG key isn't used anymore. Remove all the associated machinery.
2023-01-21 11:11:35 +01:00

27 lines
326 B
Nix

{ pkgs
, treefmt
}:
with pkgs;
mkShellNoCC {
buildInputs = [
(terraform.withPlugins (
p: [
p.cloudflare
p.null
p.external
p.hydra
]
))
jq
sops
(python3.withPackages (
p: [
p.deploykit
p.invoke
]
))
rsync
treefmt
];
}