add todo unencrypted dns

This commit is contained in:
Daniel Langbein 2024-09-24 16:21:49 +02:00
parent af2b68d73c
commit aa7b587dde
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 14 additions and 0 deletions

View File

@ -2,7 +2,10 @@
{
imports = [
# DNS settings.
# TODO add nix option
./dns.nix
#./dns-unencrypted.nix
# Nix garbage collection.
./nix-gc.nix
# Display contact information during boot.

View File

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
networking.nameservers = [
# https://www.kuketz-blog.de/empfehlungsecke/#dns
# unfiltered.adguard-dns.com (supports DNSSEC)
"94.140.14.140" "94.140.14.141"
# https://www.kuketz-blog.de/empfehlungsecke/#dns
# dot.ffmuc.net (supports DNSSEC)
"5.1.66.255" "185.150.99.255"
];
}