fix: install tailscale-systray only on "desktop" roles

This commit is contained in:
Nydragon 2024-12-21 13:59:35 +01:00
parent 6bd0a92f95
commit dea5a0551e
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -57,7 +57,7 @@ in
systemTray = mkOption { systemTray = mkOption {
type = bool; type = bool;
default = true; default = config.modules.system.roles.desktop.enable;
description = "Display a system tray icon to interact with tailscale."; description = "Display a system tray icon to interact with tailscale.";
}; };
}; };