Skip to content

Commit 96a292b

Browse files
Auto generate docs/reference/options.md
1 parent 2a4ff4e commit 96a292b

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

docs/reference/options.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42442,6 +42442,42 @@ outputOf (attribute set)
4244242442

4244342443

4244442444

42445+
## overlays
42446+
42447+
42448+
42449+
List of overlays to apply to pkgs. Each overlay is a function that takes two arguments: final and prev.
42450+
42451+
42452+
42453+
*Type:*
42454+
list of function that evaluates to a(n) function that evaluates to a(n) (attribute set)
42455+
42456+
42457+
42458+
*Default:*
42459+
` [ ] `
42460+
42461+
42462+
42463+
*Example:*
42464+
42465+
```
42466+
[
42467+
(final: prev: {
42468+
hello = prev.hello.overrideAttrs (oldAttrs: {
42469+
patches = (oldAttrs.patches or []) ++ [ ./hello-fix.patch ];
42470+
});
42471+
})
42472+
]
42473+
42474+
```
42475+
42476+
*Declared by:*
42477+
- [https://github.com/cachix/devenv/blob/main/src/modules/top-level.nix](https://github.com/cachix/devenv/blob/main/src/modules/top-level.nix)
42478+
42479+
42480+
4244542481
## pre-commit
4244642482

4244742483

0 commit comments

Comments
 (0)