Add dnscrypt-proxy, failed mpd experiment
This commit is contained in:
parent
373e5c66ee
commit
fe48c73cd1
|
@ -13,6 +13,7 @@
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
./dns.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
|
29
dns.nix
Normal file
29
dns.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
networking = {
|
||||||
|
nameservers = [ "::1" "127.0.0.1" ];
|
||||||
|
resolvconf.useLocalResolver = true;
|
||||||
|
networkmanager.dns = "none";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.dnscrypt-proxy2 = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
sources.public-resolvers = {
|
||||||
|
urls = [
|
||||||
|
"https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v2/public-resolvers.md"
|
||||||
|
"https://download.dnscrypt.info/resolvers-list/v2/public-resolvers.md"
|
||||||
|
];
|
||||||
|
cache_file = "/var/lib/dnscrypt-proxy2/public-resolvers.md";
|
||||||
|
minisign_key = "RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3";
|
||||||
|
};
|
||||||
|
|
||||||
|
server_names = ["cloudflare"];
|
||||||
|
fallback_resolvers = ["1.1.1.1:53" "1.0.0.1:53"];
|
||||||
|
|
||||||
|
listen_addresses = ["0.0.0.0:53"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
systemd.services.dnscrypt-proxy2.serviceConfig.StateDirectory = "dnscrypt-proxy2";
|
||||||
|
}
|
Loading…
Reference in a new issue