From c2a5a4b5614705a930321f9b12e7015eb71f6721 Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 25 May 2025 01:15:37 +1000 Subject: [PATCH] tailscale: split into a seperate module for darwin use brew on macOS to get tray integration. --- flake.nix | 2 +- modules/network/vpn/tailscale-darwin.nix | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 modules/network/vpn/tailscale-darwin.nix diff --git a/flake.nix b/flake.nix index 79ba46d..c015bd9 100644 --- a/flake.nix +++ b/flake.nix @@ -88,7 +88,7 @@ ./modules/desktop/de/darwin.nix ./modules/hardware/darwin.nix ./modules/nix/darwin.nix - ./modules/network/vpn/tailscale.nix + ./modules/network/vpn/tailscale-darwin.nix ./hosts/kita/conf.nix ]; diff --git a/modules/network/vpn/tailscale-darwin.nix b/modules/network/vpn/tailscale-darwin.nix new file mode 100644 index 0000000..ff37699 --- /dev/null +++ b/modules/network/vpn/tailscale-darwin.nix @@ -0,0 +1,7 @@ +{ config, lib, pkgs, ... }: + +{ + homebrew.casks = [ + "tailscale" + ]; +}