This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/overlays/README.md
Truxnell 89431bdfdb
feat: add overlays (#34)
Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
2024-03-29 22:26:56 +00:00

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; }));
}
```