mirror of
https://github.com/deltathetawastaken/dotfiles.git
synced 2025-12-06 07:16:37 +03:00
7 lines
186 B
Nix
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";
|
|
} |