From bc919c747280134429663569a7e0b92f1392e4e6 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Sun, 22 Aug 2021 23:02:34 -0400 Subject: [PATCH] Enable Tailscale --- flake.nix | 1 - machines/hephaestus/configuration.nix | 9 ++++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 0e6e157..2412adb 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,6 @@ ./common/fonts.nix ./common/linux.nix ./common/netdata/default.nix - ./common/changedetection.io/default.nix ./common/opensnitch/default.nix ./common/networking.nix ./common/packages.nix diff --git a/machines/hephaestus/configuration.nix b/machines/hephaestus/configuration.nix index 88c5a57..94bd6ec 100644 --- a/machines/hephaestus/configuration.nix +++ b/machines/hephaestus/configuration.nix @@ -17,15 +17,18 @@ }; firewall = { allowedTCPPorts = [ - 6080 # hound - 8001 # datasette + 19999 # netdata + ]; + allowedUDPPorts = [ + 41641 # tailscale ]; }; }; - # Enable the OpenSSH server. services.sshd.enable = true; + services.tailscale = { enable = true; }; + services.xserver.videoDrivers = [ "nvidia" ]; }