Files
athens/nix/shells.nix
T

24 lines
302 B
Nix
Raw Normal View History

2024-12-07 20:46:15 -05: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; [
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;
};
}