mirror of
https://github.com/NixOS/nix
synced 2025-06-27 21:01:16 +02:00
12 lines
293 B
Markdown
12 lines
293 B
Markdown
---
|
|
synopsis: "`inputs.self.submodules` flake attribute"
|
|
prs: [12421]
|
|
---
|
|
|
|
Flakes in Git repositories can now declare that they need Git submodules to be enabled:
|
|
```
|
|
{
|
|
inputs.self.submodules = true;
|
|
}
|
|
```
|
|
Thus, it's no longer needed for the caller of the flake to pass `submodules = true`.
|