From dea5a0551e1384fd44996b1352cd82ea15f528bc Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sat, 21 Dec 2024 13:59:35 +0100 Subject: [PATCH] fix: install tailscale-systray only on "desktop" roles --- options/services/tailscale.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options/services/tailscale.nix b/options/services/tailscale.nix index cd5047e..7f54f6f 100644 --- a/options/services/tailscale.nix +++ b/options/services/tailscale.nix @@ -57,7 +57,7 @@ in systemTray = mkOption { type = bool; - default = true; + default = config.modules.system.roles.desktop.enable; description = "Display a system tray icon to interact with tailscale."; }; };