fix(ntfy-sh): overlay for taking some 25.05 features
All checks were successful
Check meta / check_meta (pull_request) Successful in 17s
Check meta / check_dns (pull_request) Successful in 21s
Check workflows / check_workflows (pull_request) Successful in 20s
Build all the nodes / Jaccess04 (pull_request) Successful in 28s
Run pre-commit on all files / pre-commit (push) Successful in 32s
Build all the nodes / Jaccess01 (pull_request) Successful in 31s
Run pre-commit on all files / pre-commit (pull_request) Successful in 34s
Build all the nodes / ap01 (pull_request) Successful in 49s
Build all the nodes / bridge01 (pull_request) Successful in 55s
Build all the nodes / geo01 (pull_request) Successful in 51s
Build all the nodes / netcore01 (pull_request) Successful in 29s
Build all the nodes / netcore02 (pull_request) Successful in 30s
Build all the nodes / geo02 (pull_request) Successful in 56s
Build all the nodes / cof02 (pull_request) Successful in 1m4s
Build all the nodes / build01 (pull_request) Successful in 1m5s
Build all the nodes / hypervisor01 (pull_request) Successful in 54s
Build all the nodes / hypervisor02 (pull_request) Successful in 54s
Build all the nodes / hypervisor03 (pull_request) Successful in 52s
Build all the nodes / lab-router01 (pull_request) Successful in 1m3s
Build all the nodes / compute01 (pull_request) Successful in 1m30s
Build the shell / build-shell (pull_request) Successful in 37s
Build all the nodes / tower01 (pull_request) Successful in 1m6s
Build all the nodes / web02 (pull_request) Successful in 1m8s
Build all the nodes / iso (pull_request) Successful in 1m14s
Build all the nodes / vault01 (pull_request) Successful in 1m12s
Build all the nodes / web03 (pull_request) Successful in 1m1s
Build all the nodes / zulip01 (pull_request) Successful in 56s
Build all the nodes / rescue01 (pull_request) Successful in 1m22s
Build all the nodes / storage01 (pull_request) Successful in 1m25s
Build all the nodes / web01 (pull_request) Successful in 1m26s
Build all the nodes / krz01 (pull_request) Successful in 1m35s

This commit is contained in:
catvayor 2025-06-14 21:20:36 +02:00
parent 44454b1d36
commit 02f19e6f64
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -6,6 +6,7 @@
config, config,
lib, lib,
meta, meta,
nixpkgs,
... ...
}: }:
@ -29,18 +30,11 @@ let
}) ntfy-users; }) ntfy-users;
in in
{ {
nixpkgs.overlays = [ nixpkgs.overlays =
(_: super: { if meta.nodes."web01".nixpkgs.version == "25.05" then
ntfy-sh = super.ntfy-sh.overrideAttrs (o: { throw "This overlay should be removed"
patches = o.patches or [ ] ++ [ else
(super.fetchurl { [ (_: _: { inherit (nixpkgs.nixos."25.05") ntfy-sh replaceVarsWith; }) ];
url = "https://github.com/binwiederhier/ntfy/pull/1340.patch";
hash = "sha256-pmmpccsrAvByynCKc0CMUrVWzKY+Ai250NIfYCXvbWU=";
})
];
});
})
];
services.ntfy-sh = { services.ntfy-sh = {
enable = true; enable = true;