1
Fork 0
satellite/home/features/neovim/snippets/nix.miros
2024-04-16 23:25:20 +02:00

12 lines
211 B
Plaintext

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