infrastructure/nixos/pkgs/default.nix
Vivian da6bc519ee
All checks were successful
continuous-integration/drone/push Build is passing
manually upgrade renovate
2022-06-07 23:57:57 +02:00

18 lines
361 B
Nix

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