nixos: cleanup

This commit is contained in:
Vivian 2021-11-21 21:56:17 +01:00
parent 50fb05ae5f
commit b1fcc4a338
7 changed files with 31 additions and 44 deletions

10
nixos/pkgs/default.nix Normal file
View file

@ -0,0 +1,10 @@
final: prev: {
v = {
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
withDNSCrypt = true;
withTFO = true;
};
};
}