Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: 504b596e5558
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 052646749447
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Mar 16, 2017

  1. ldns: split man pages

    Saves ~1.8MB
    joachifm committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    c317e5c View commit details
    Browse the repository at this point in the history
  2. dnscrypt-proxy: enable additional plugins

    Adding ldns builds additional plugins for rewriting DNS queries,
    such as blocking and forwarding.
    
    For example, to use a custom domain blocklist, you can do
    ```nix
    let
      myBlockListFile = writeText "blocked-domains" ''
        *.example.com
      '';
    in
    {
      services.dnscrypt-proxy.extraArgs = [
        "-X libdcplugin_example_ldns_blocking.so,--domains=${myBlockListFile}"
      ];
    }
    ```
    joachifm committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    0526467 View commit details
    Browse the repository at this point in the history