1
Fork 0
satellite/home/features/neovim/snippets/nix.miros
2024-05-01 17:51:24 +02:00

12 lines
215 B
Plaintext

block auto
string fetchgh
name fetch github
desc Fetch a GitHub repository
snip
pkgs.fetchFromGitHub {
owner = "$1";
repo = "$2";
rev = "";
sha256 = "";
}$0