about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-04-04T12·16+0100
committerVincent Ambo <tazjin@google.com>2020-04-04T12·16+0100
commitde81e087d4b95d809a5f6eb48aa6a2fe4f26ace7 (patch)
treec08299f64ac0a371157261ba33d91dd4f8c9f8c6
parent0f3d11f541841e903cf656bf84e841f14db345e4 (diff)
chore(ops/nixos/nugget): Use upstream tailscale module r/622
-rw-r--r--ops/nixos/nugget/default.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/ops/nixos/nugget/default.nix b/ops/nixos/nugget/default.nix
index 6500008355..90eb78edf2 100644
--- a/ops/nixos/nugget/default.nix
+++ b/ops/nixos/nugget/default.nix
@@ -15,7 +15,6 @@ config: let
   ]));
 in depot.lib.fix(self: {
   imports = [
-    ../modules/tailscale.nix
     ../modules/v4l2loopback.nix
   ];
 
@@ -98,7 +97,6 @@ in depot.lib.fix(self: {
       nuggetEmacs
       ops.kontemplate
       third_party.git
-      third_party.tailscale
       third_party.ffmpeg
     ]) ++
 
@@ -253,12 +251,7 @@ in depot.lib.fix(self: {
     };
 
     # Use Tailscale \o/
-    services.tailscale = {
-      enable = true;
-      relayConf = "/etc/tailscale/relay.conf";
-      aclFile = null; # allow all traffic for testing
-      package = depot.third_party.tailscale;
-    };
+    services.tailscale.enable = true;
 
     # ... and other nonsense.
     system.stateVersion = "19.09";