18 lines
268 B
Nix
18 lines
268 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
# linters/typos/etc.
|
|
pre-commit
|
|
typos
|
|
detect-secrets
|
|
gitleaks
|
|
ripsecrets
|
|
|
|
# encrypting secrets
|
|
agebox
|
|
|
|
# generic utils
|
|
just
|
|
];
|
|
}
|