infrastructure/nixos/pkgs/default.nix

13 lines
225 B
Nix
Raw Normal View History

2021-11-21 21:56:17 +01:00
final: prev: {
2021-12-12 15:51:56 +01:00
clickhouse = prev.callPackage ./clickhouse { };
2021-11-21 21:56:17 +01:00
v = {
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
withDNSCrypt = true;
withTFO = true;
};
};
}