summaryrefslogtreecommitdiff
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to 'overlays')
-rw-r--r--overlays/changedetection-io.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/overlays/changedetection-io.nix b/overlays/changedetection-io.nix
new file mode 100644
index 00000000..95e8985e
--- /dev/null
+++ b/overlays/changedetection-io.nix
@@ -0,0 +1,7 @@
1{ final, prev, ... }: {
2 changedetection-io = prev.changedetection-io.overrideAttrs (oldAttrs: {
3 propagatedBuildInputs = (oldAttrs.propagatedBuildInputs or []) ++ (with final.python3.pkgs; [
4 playwright
5 ]);
6 });
7}