infrastructure/nixos/pkgs/default.nix
Vivian bf21b3b7c8
All checks were successful
continuous-integration/drone/push Build is passing
add synapse metrics
2022-07-29 13:02:11 +02:00

20 lines
406 B
Nix

final: prev: {
hedgedoc = prev.hedgedoc.overrideAttrs (old: {
# see https://github.com/NixOS/nixpkgs/issues/176127#issuecomment-1146782555
preBuild = ''
export HOME=$TMPDIR
'';
});
vmagent = prev.callPackage ./vmagent { };
v = {
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
withDNSCrypt = true;
withTFO = true;
};
};
}