1
Fork 0
satellite/home/features/neovim/snippets/nix.miros

12 lines
211 B
Plaintext
Raw Normal View History

2024-04-16 23:25:20 +02:00
block auto
string fetchgh
name fetch github
desc Fetch a GitHub repository
snip
pkgs.fetchFromGitHub {
owner = $1;
repo = $2;
rev = "";
sha256 = "";
}$0