This commit is contained in:
Daniel Langbein 2023-09-15 17:26:42 +02:00
parent ea13fba924
commit 39f19085e5
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
5 changed files with 15 additions and 4 deletions

View File

@ -44,6 +44,7 @@ in
#../../modules/android.nix
#../../modules/podman.nix
#../../modules/docker.nix
../../modules/dns.nix
];
networking.hostName = "yodaTab";

View File

@ -44,6 +44,7 @@ in
../../modules/android.nix
#../../modules/podman.nix
../../modules/docker.nix
../../modules/dns.nix
];
networking.hostName = "yodaTux";

View File

@ -46,6 +46,7 @@ in
#../../modules/android.nix
#../../modules/podman.nix
../../modules/docker.nix
../../modules/dns.nix
];
networking.hostName = "yodaYoga";

View File

@ -13,10 +13,6 @@
# Enables wireless support via wpa_supplicant.
# networking.wireless.enable = true;
# Configure network proxy if necessary.
#networking.proxy.default = "http://user:password@proxy:port/";
#networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking.
networking.networkmanager.enable = true;

12
modules/dns.nix Normal file
View File

@ -0,0 +1,12 @@
{ 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"
];
}