infra/shell.nix

27 lines
350 B
Nix
Raw Normal View History

2022-04-10 20:57:52 +02:00
{ pkgs ? import <nixpkgs> {}
, sops-import-keys-hook
}:
2022-04-10 20:57:52 +02:00
with pkgs;
mkShell {
2021-09-29 19:09:35 +02:00
sopsPGPKeyDirs = [
"./keys"
];
2022-04-10 20:57:52 +02:00
buildInputs = with pkgs; [
(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
]
))
2021-09-25 22:35:51 +02:00
sops
2022-04-10 20:57:52 +02:00
python3.pkgs.invoke
2021-10-21 11:09:52 +02:00
rsync
2021-09-29 19:09:35 +02:00
2022-04-10 20:57:52 +02:00
sops-import-keys-hook
];
}