Unable to connect an shared in machine with auth key

Hello I have a shared in machine. I want to connect on is with tailscale auth key, but this machine will not be listet.

The ACL is on both accounts like this:

{

	"tagOwners": {
		"tag:githubAction": ["autogroup:admin"],
	},

	"acls": [
		// Allow all connections.
		// Comment this section out if you want to define specific restrictions.
		{"action": "accept", "src": ["*"], "dst": ["*:*"]},
	],

	// Define users and devices that can use Tailscale SSH.
	"ssh": [
		// Allow all users to SSH into their own devices in check mode.
		// Comment this section out if you want to define specific restrictions.
		{
			"action": "check",
			"src":    ["autogroup:members"],
			"dst":    ["autogroup:self"],
			"users":  ["autogroup:nonroot", "root"],
		},
	],
	"nodeAttrs": [
		{
			"target": ["autogroup:members"],
			"attr":   ["funnel"],
		},
	],
}

But on mac i have it listed. What can I do to connect to a shared in machine?