1
Fork 0
satellite/dotfiles/vscode-snippets/snippets/nix/core.json
2023-02-09 23:55:36 +01:00

15 lines
279 B
JSON

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