2023-11-07 07:08:34 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
options.myFlake.nixos.networking.dns = lib.mkOption {
|
|
|
|
type = lib.types.string;
|
|
|
|
default = "google";
|
|
|
|
example = "alidns";
|
|
|
|
description = "Select your DNS provider";
|
|
|
|
};
|
|
|
|
|
|
|
|
config.networking.nameservers = lib.mkMerge [
|
|
|
|
(lib.mkIf (config.myFlake.nixos.networking.dns == "google") [
|
|
|
|
### Google DNS
|
|
|
|
"8.8.8.8"
|
|
|
|
"8.8.4.4"
|
|
|
|
"2001:4860:4860::8888"
|
|
|
|
"2001:4860:4860::8844"
|
|
|
|
])
|
|
|
|
(lib.mkIf (config.myFlake.nixos.networking.dns == "alidns") [
|
|
|
|
### AliDNS
|
|
|
|
"223.5.5.5"
|
|
|
|
"223.6.6.6"
|
|
|
|
"2400:3200::1"
|
|
|
|
"2400:3200:baba::1"
|
|
|
|
])
|
2023-11-04 10:02:11 +00:00
|
|
|
];
|
2023-11-04 10:14:42 +00:00
|
|
|
}
|