Files
nixvim/shell.nix
2026-02-08 10:16:40 +01:00

10 lines
83 B
Nix

{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
ripgrep
git
];
}