server/shell.nix

19 lines
268 B
Nix
Raw Normal View History

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