athens/nix/shells.nix
2024-08-02 13:27:23 -04:00

19 lines
310 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;
};
}