server/shell.nix

9 lines
134 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
pre-commit
typos
detect-secrets
];
}