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

27 lines
430 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
];
};
};
}