server/shell.nix

7 lines
101 B
Nix

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