server/shell.nix

10 lines
134 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
pre-commit
typos
2024-12-21 11:37:58 +00:00
detect-secrets
];
}