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

12 lines
215 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 {
2024-05-01 17:51:24 +02:00
owner = "$1";
repo = "$2";
2024-04-16 23:25:20 +02:00
rev = "";
sha256 = "";
}$0