Files
athens/nix/shells.nix
T
2026-07-31 15:33:47 -04:00

25 lines
311 B
Nix

{
system,
pkgs,
self,
...
}:
{
default = pkgs.mkShell {
name = "athens";
buildInputs = with pkgs; [
deadnix
doctl
nh
nixd
nixf
nixpkgs-fmt
opentofu
statix
sops
];
inherit (self.checks.${system}.pre-commit-check) shellHook;
};
}