infrastructure/nixos/pkgs/default.nix

18 lines
361 B
Nix
Raw Normal View History

2021-11-21 21:56:17 +01:00
final: prev: {
2022-06-07 23:57:57 +02:00
hedgedoc = prev.hedgedoc.overrideAttrs (old: {
# see https://github.com/NixOS/nixpkgs/issues/176127#issuecomment-1146782555
preBuild = ''
export HOME=$TMPDIR
'';
});
2021-11-21 21:56:17 +01:00
v = {
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
withDNSCrypt = true;
withTFO = true;
};
};
}