dotfiles/home/apps/vscode/snippets/nix.json

14 lines
253 B
JSON

{
"mkShell": {
"prefix": "mkshell",
"body": [
"{pkgs ? import <nixpkgs> {}}:",
"pkgs.mkShell {",
" buildInputs = with pkgs; [",
" $1",
" ];",
"}"
],
"description": "Nix development shell"
}
}