diff --git a/doc/manual/rl-next/git-lfs-support.md b/doc/manual/rl-next/git-lfs-support.md index 2990fc76c..4b6e0ca86 100644 --- a/doc/manual/rl-next/git-lfs-support.md +++ b/doc/manual/rl-next/git-lfs-support.md @@ -1,6 +1,6 @@ --- synopsis: "Git LFS support" -prs: [10153] +prs: [10153, 12468] --- The Git fetcher now supports Large File Storage (LFS). This can be enabled by passing the attribute `lfs = true` to the fetcher, e.g. @@ -8,4 +8,11 @@ The Git fetcher now supports Large File Storage (LFS). This can be enabled by pa 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**](https://github.com/b-camacho), [**@kip93**](https://github.com/kip93) diff --git a/doc/manual/rl-next/self-lfs-attr.md b/doc/manual/rl-next/self-lfs-attr.md deleted file mode 100644 index 0a2e878ff..000000000 --- a/doc/manual/rl-next/self-lfs-attr.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -synopsis: "`inputs.self.lfs` flake attribute" -prs: [12468] ---- - -Flakes in Git repositories can now declare that they need Git lfs to be enabled: -``` -{ - inputs.self.lfs = true; -} -``` -Thus, it's no longer needed for the caller of the flake to pass `lfs = true`.