infra/shell.nix

30 lines
375 B
Nix
Raw Normal View History

{ config
, pkgs
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.external
2022-05-12 00:07:07 +02:00
p.hydra
2023-01-21 11:28:01 +01:00
p.null
p.sops
2023-01-21 11:28:01 +01:00
p.tfe
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
config.treefmt.build.wrapper
];
}