athens/nix/shells.nix

18 lines
309 B
Nix
Raw Normal View History

2023-09-12 17:01:59 -04:00
{ system, pkgs, self, ... }: {
2023-07-27 15:51:15 -04:00
default = pkgs.mkShell {
name = "athens";
buildInputs = with pkgs; [
deploy-rs.deploy-rs
deadnix
2023-08-20 13:06:05 -04:00
doctl
nil
nixpkgs-fmt
statix
sops
2023-08-20 13:06:05 -04:00
terraform
];
inherit (self.checks.${system}.pre-commit-check) shellHook;
};
}