89431bdfdb
Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
9 lines
No EOL
205 B
Markdown
9 lines
No EOL
205 B
Markdown
### Adding overlays
|
|
|
|
Overlays should be added as individual nix files to `./nixos/overlays` with format
|
|
|
|
```nix
|
|
final: prev: {
|
|
hello = (prev.hello.overrideAttrs (oldAttrs: { doCheck = false; }));
|
|
}
|
|
``` |