dotfiles/shell.nix
2024-05-05 03:29:43 +03:00

7 lines
186 B
Nix

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
name = "delta";
packages = with pkgs; [ gitleaks pre-commit ];
shellHook = "pre-commit install &> /dev/null && gitleaks detect -v";
}