depot/modules/autopatch/default.nix

21 lines
347 B
Nix
Raw Permalink Normal View History

2021-08-23 21:49:13 +03:00
{ pkgs, lib, config, inputs, ... }:
2021-06-05 23:59:06 +03:00
{
nixpkgs.overlays = [
(self: super:
(let
patched = import ../../packages/patched-derivations.nix super;
in {
inherit (patched)
prometheus-jitsi-exporter
sssd
tempo
;
2021-10-16 15:26:00 +03:00
2022-05-27 16:58:57 +03:00
jre_headless = patched.jre17_standard;
2021-06-05 23:59:06 +03:00
})
)
];
}