athens/nix/shells.nix
2024-12-07 20:46:15 -05:00

25 lines
318 B
Nix

{
system,
pkgs,
self,
...
}:
{
default = pkgs.mkShell {
name = "athens";
buildInputs = with pkgs; [
deploy-rs
deadnix
doctl
nixd
nixf
nixpkgs-fmt
opentofu
statix
sops
];
inherit (self.checks.${system}.pre-commit-check) shellHook;
};
}