infra/shell.nix

28 lines
326 B
Nix
Raw Normal View History

{ pkgs
2022-12-31 07:18:49 +01:00
, treefmt
2022-04-10 20:57:52 +02:00
}:
2022-04-10 20:57:52 +02:00
with pkgs;
2022-08-29 14:11:38 +02:00
mkShellNoCC {
buildInputs = [
2022-04-10 20:57:52 +02:00
(terraform.withPlugins (
p: [
p.cloudflare
p.null
p.external
2022-05-12 00:07:07 +02:00
p.hydra
2022-04-10 20:57:52 +02:00
]
))
2022-07-11 09:26:13 +02:00
jq
2021-09-25 22:35:51 +02:00
sops
(python3.withPackages (
p: [
p.deploykit
p.invoke
]
))
2021-10-21 11:09:52 +02:00
rsync
2022-12-31 07:18:49 +01:00
treefmt
];
}