clan-infra/flake-parts/devShells/default.nix
DavHau c638c05989
Some checks failed
build / test (push) Failing after 7s
devShells: add tools from clan-core
2023-07-28 15:50:52 +02:00

27 lines
470 B
Nix

{
perSystem =
{ inputs'
, lib
, pkgs
, self'
, ...
}: {
devShells.default = pkgs.mkShell {
packages = [
pkgs.bashInteractive
pkgs.sops
(pkgs.terraform.withPlugins (p: [
p.hetznerdns
p.hcloud
p.null
p.external
p.local
]))
];
inputsFrom = [
inputs'.clan-core.devShells.default
];
};
};
}