athens/nix/shells.nix

19 lines
310 B
Nix
Raw Permalink 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; [
2024-01-26 17:00:00 -05:00
deploy-rs
deadnix
2023-08-20 13:06:05 -04:00
doctl
2024-08-02 13:27:23 -04:00
nixd
nixf
nixpkgs-fmt
2023-10-10 19:27:29 -04:00
opentofu
statix
sops
];
inherit (self.checks.${system}.pre-commit-check) shellHook;
};
}