mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
494 B
494 B
| synopsis | prs | ||
|---|---|---|---|
| Git LFS support |
|
The Git fetcher now supports Large File Storage (LFS). This can be enabled by passing the attribute lfs = true to the fetcher, e.g.
nix flake prefetch 'git+ssh://git@github.com/Apress/repo-with-large-file-storage.git?lfs=1'
A flake can also declare that it requires lfs to be enabled:
{
inputs.self.lfs = true;
}
Author: @b-camacho, @kip93