It does not matter, because you have the same linear relation between your private key "d" and your signature nonce "k".
s=(z+rd)/k
sk=z+rd
sk-z=rd
d=(sk-z)/r
d=(s/r)k-(z/r)
d+(z/r)=(s/r)k
Q=d*G
R=k*G
Q+(z/r)=(s/r)R
If you have "d=(s/r)k-(z/r)", then you can have the same "d", so that "d1=d2", so:
d=(s1/r1)k1-(z1/r1)
d=(s2/r2)k2-(z2/r2)
Here, "(s/r)" and "(z/r)" are known, so:
d=const1*k1-const2
d=const3*k2-const4
You can also have the same signature nonce "k" and different private keys "d", it does not matter at all:
sk=z+rd
k=(z+rd)/s
k=(z/s)+(r/s)d
k=const1+const2*d1
k=const3+const4*d2
See? You have two new variables for each equation, so you always have one more variable than equation. That means, from algebraic point of view, it has many solutions. For example, assign k=1, you will get some solutions for d1 and d2. Assign k=2, you will get completely different solutions. The same for assigning d-values above.