diff options
author | Vincent Ambo <mail@tazj.in> | 2022-02-18T11·22+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-02-18T11·35+0000 |
commit | c72abe04f24c3108346f0fc8a6d147a2c0958d6b (patch) | |
tree | b4ca1e10e57661d633ca78ffb07c9b52a6838ff9 /ops/machines | |
parent | a438f8196459a127b5633851b57c63c219ab2c13 (diff) |
feat(sanduny): Configure Bitfolk nameservers r/3846
Change-Id: I81b252aedbf1ce3543a167b6c1942c404d4f1f1e Reviewed-on: https://cl.tvl.fyi/c/depot/+/5312 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'ops/machines')
-rw-r--r-- | ops/machines/sanduny/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ops/machines/sanduny/default.nix b/ops/machines/sanduny/default.nix index f5fc7cdac66a..81754b3341a2 100644 --- a/ops/machines/sanduny/default.nix +++ b/ops/machines/sanduny/default.nix @@ -40,6 +40,14 @@ in defaultGateway6.address = "2001:ba8:1f1:f109::1"; firewall.allowedTCPPorts = [ 22 80 443 ]; + + # https://bitfolk.com/customer_information.html#toc_2_DNS + nameservers = [ + "85.119.80.232" + "85.119.80.233" + "2001:ba8:1f1:f205::53" + "2001:ba8:1f1:f206::53" + ]; }; security.sudo.wheelNeedsPassword = false; |