2023-09-12 17:01:59 -04:00
|
|
|
{ system, pkgs, self, ... }: {
|
2023-07-27 15:51:15 -04:00
|
|
|
default = pkgs.mkShell {
|
2023-07-27 15:22:16 -04:00
|
|
|
name = "athens";
|
|
|
|
buildInputs = with pkgs; [
|
2024-01-26 17:00:00 -05:00
|
|
|
deploy-rs
|
2023-07-27 15:22:16 -04:00
|
|
|
deadnix
|
2023-08-20 13:06:05 -04:00
|
|
|
doctl
|
2024-08-02 13:27:23 -04:00
|
|
|
nixd
|
|
|
|
nixf
|
2023-07-27 15:22:16 -04:00
|
|
|
nixpkgs-fmt
|
2023-10-10 19:27:29 -04:00
|
|
|
opentofu
|
2023-07-27 15:22:16 -04:00
|
|
|
statix
|
|
|
|
sops
|
|
|
|
];
|
|
|
|
|
|
|
|
inherit (self.checks.${system}.pre-commit-check) shellHook;
|
|
|
|
};
|
|
|
|
}
|