nix/overlay/ChangedetectionIo.nix

9 lines
184 B
Nix

{ ... }: {
# HACK: Remove sometime later.
nixpkgs.overlays = [ (final: prev: {
changedetection-io = prev.changedetection-io.overrideAttrs (old: {
doCheck = false;
});
})];
}