nixos-configuration/homeModules/tailscale.nix

4 lines
138 B
Nix

{ osConfig, thisDevice, ... }:
{
services.tailscale-systray.enable = (thisDevice.isDesktop or false) && osConfig.my.tailscale.enable;
}