clan-infra/devShells/flake-module.nix
Jörg Thalheim 35b2e4a657
Some checks failed
build / test (push) Failing after 3s
move devShells out of flake-parts
2023-08-03 16:15:19 +02:00

25 lines
448 B
Nix

{
perSystem =
{ inputs'
, pkgs
, ...
}: {
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
];
};
};
}