clan-infra/devShells/flake-module.nix
Jörg Thalheim 7ea466b7f2
Some checks failed
build / test (push) Failing after 2s
checks / test (push) Failing after 6s
make terraform hallal
2023-11-03 10:37:57 +01:00

31 lines
612 B
Nix

{
perSystem =
{ inputs'
, pkgs
, lib
, ...
}: {
devShells.default = pkgs.mkShellNoCC {
packages = [
pkgs.bashInteractive
pkgs.sops
inputs'.clan-core.packages.clan-cli
((pkgs.terraform.withPlugins (p: [
p.hetznerdns
p.hcloud
p.null
p.external
p.local
])).overrideAttrs (old: {
meta = old.meta // { license = lib.licenses.free; };
}))
];
inputsFrom = [
inputs'.clan-core.devShells.default
];
};
};
}