infrastructure/nixos/pkgs/default.nix
2021-11-21 21:56:17 +01:00

11 lines
172 B
Nix

final: prev: {
v = {
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
withDNSCrypt = true;
withTFO = true;
};
};
}