server/shell.nix

15 lines
217 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
2024-12-21 12:51:16 +00:00
# linters/typos/etc.
pre-commit
typos
2024-12-21 11:37:58 +00:00
detect-secrets
2024-12-21 12:51:16 +00:00
gitleaks
# encrypting secrets
agebox
];
}