This commit is contained in:
Daniel Langbein 2023-09-16 12:53:10 +02:00
parent de7cbc2052
commit da6f6d58c3
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
5 changed files with 9 additions and 15 deletions

View File

@ -47,7 +47,6 @@ in
#../../modules/android.nix #../../modules/android.nix
#../../modules/podman.nix #../../modules/podman.nix
#../../modules/docker.nix #../../modules/docker.nix
../../modules/dns.nix
]; ];
# Manually enable compression # Manually enable compression

View File

@ -47,7 +47,6 @@ in
../../modules/android.nix ../../modules/android.nix
#../../modules/podman.nix #../../modules/podman.nix
../../modules/docker.nix ../../modules/docker.nix
../../modules/dns.nix
]; ];
# Manually enable compression # Manually enable compression

View File

@ -49,7 +49,6 @@ in
#../../modules/android.nix #../../modules/android.nix
#../../modules/podman.nix #../../modules/podman.nix
../../modules/docker.nix ../../modules/docker.nix
../../modules/dns.nix
]; ];
# Manually enable compression # Manually enable compression

View File

@ -16,6 +16,15 @@
# Enable networking. # Enable networking.
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.nameservers = [
# https://www.kuketz-blog.de/empfehlungsecke/#dns
# dot.ffmuc.net (supports DNSSEC)
"5.1.66.255" "185.150.99.255"
# https://www.kuketz-blog.de/empfehlungsecke/#dns
# unfiltered.adguard-dns.com (supports DNSSEC)
"94.140.14.140" "94.140.14.141"
];
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";

View File

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