mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
add todo unencrypted dns
This commit is contained in:
parent
af2b68d73c
commit
aa7b587dde
@ -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.
|
||||
|
11
modules/dns-unencrypted.nix
Normal file
11
modules/dns-unencrypted.nix
Normal 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"
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user