clan-infra/devShells/flake-module.nix
Jörg Thalheim 15b20d2e9e
All checks were successful
build / test (push) Successful in 7s
move devShells out of flake-parts
2023-08-03 16:18:29 +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
];
};
};
}