diff options
author | makefu <github@syntax-fehler.de> | 2017-02-12 19:47:36 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-02-12 19:47:36 +0100 |
commit | 9f90562662f7fffa4aa97c704dd5d27325dbe9b7 (patch) | |
tree | 78828bb53978f5e7397d1c23363955d6e4cf655a | |
parent | cf68213c44090ef4aae3d2e202d1a31e9ebbb4aa (diff) |
m 1 x: test dnscrypt
-rw-r--r-- | makefu/1systems/x.nix | 6 | ||||
-rw-r--r-- | makefu/2configs/dnscrypt.nix | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/makefu/1systems/x.nix b/makefu/1systems/x.nix index adbf372ab..08da92068 100644 --- a/makefu/1systems/x.nix +++ b/makefu/1systems/x.nix @@ -10,9 +10,10 @@ ../2configs/main-laptop.nix ../2configs/laptop-utils.nix ../2configs/laptop-backup.nix + ../2configs/dnscrypt.nix # testing - ../2configs/openvpn/vpngate.nix + # ../2configs/openvpn/vpngate.nix #../2configs/temp/share-samba.nix # ../2configs/mediawiki.nix # ../2configs/wordpress.nix @@ -26,7 +27,6 @@ #../2configs/elchos/stats.nix #../2configs/elchos/test/ftpservers.nix - ../2configs/laptop-backup.nix # ../2configs/tinc/siem.nix #../2configs/torrent.nix # temporary modules @@ -59,7 +59,7 @@ # hardware specifics are in here ../2configs/hw/tp-x230.nix ../2configs/hw/rtl8812au.nix - ../2configs/hw/bcm4352.nix + # mount points ../2configs/fs/sda-crypto-root-home.nix diff --git a/makefu/2configs/dnscrypt.nix b/makefu/2configs/dnscrypt.nix new file mode 100644 index 000000000..d810456f3 --- /dev/null +++ b/makefu/2configs/dnscrypt.nix @@ -0,0 +1,6 @@ +{ + services.dnscrypt-proxy.enable = true; + networking.extraResolvconfConf = '' + name_servers='127.0.0.1' + ''; +} |