all: use both dns servers
This commit is contained in:
parent
d8313711f7
commit
bc3a6c308c
2 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
networking = {
|
networking = {
|
||||||
nameservers = [
|
nameservers = [
|
||||||
"10.10.10.11"
|
"10.10.10.11"
|
||||||
|
"10.10.10.12"
|
||||||
];
|
];
|
||||||
useDHCP = lib.mkDefault false;
|
useDHCP = lib.mkDefault false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -16,7 +16,7 @@ in
|
||||||
{
|
{
|
||||||
nodeconfig.wireguard = {
|
nodeconfig.wireguard = {
|
||||||
inherit interface-name;
|
inherit interface-name;
|
||||||
dns = [ "10.10.10.11" ];
|
dns = [ "10.10.10.11" "10.10.10.12" ];
|
||||||
endpoint = "165.232.180.97:51821";
|
endpoint = "165.232.180.97:51821";
|
||||||
endpoint-publickey = "NNw/iDMCTq8mpHncrecEh4UlvtINX/UUDtCJf2ToFR4=";
|
endpoint-publickey = "NNw/iDMCTq8mpHncrecEh4UlvtINX/UUDtCJf2ToFR4=";
|
||||||
allowed-ips = if hostName == "skipper" then [ "10.10.10.0/24" ] else [ "10.10.10.1" "10.10.10.2" "10.10.10.3" ];
|
allowed-ips = if hostName == "skipper" then [ "10.10.10.0/24" ] else [ "10.10.10.1" "10.10.10.2" "10.10.10.3" ];
|
||||||
|
|
Loading…
Reference in a new issue