1
Fork 0
satellite/dotfiles/vscode-snippets/snippets/nix/core.json

15 lines
279 B
JSON
Raw Normal View History

{
"Fetch from GitHub": {
"prefix": "fetchFromGitHub",
"description": "Fetch a repo from github",
"body": [
"pkgs.fetchFromGitHub {",
"\towner = \"$1\";",
"\trepo = \"$2\";",
"\trev = \"\";",
"\tsha256 = \"\";",
"}$0"
]
}
}