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