From 0eb4b3921618a45c18d723b18bda44a39c28f4f0 Mon Sep 17 00:00:00 2001 From: Tristan Date: Tue, 5 Mar 2024 20:14:02 +0000 Subject: [PATCH] add tailscale ips to /etc/hosts --- nixos/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/default.nix b/nixos/default.nix index 05363ab..973431b 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -35,6 +35,12 @@ in { } ]; }; + networking.hosts = { + "100.65.29.110" = ["zenix"]; + "100.106.241.122" = ["alpine" "tristans.cloud"]; + "100.71.130.111" = ["fcs-tristan-nixbook"]; + "100.69.60.83" = ["google-pixel-8"]; + }; time.timeZone = lib.mkDefault "Europe/London";