Each day in Iceland, it rains with a probability p=0.8.
Denote X the number of days I stay until I've had 2 sunny days in my holidays.
What is the p.m.f. of X?
The day I finally get the second sunny day I leave.
What is the probability that I stayed exactly one week?
My Attempt
I know I can model this if it was only one sunny day, but I'm not sure how to do it if it were two. For one sunny day, I can model this as a geometric distribution, which is: $X\sim Geom(p)$ where $p=0.8$. So I need to find the probability of staying for $7$ days: $$\mathbb{P}(X=k)=(1-p)^{k-1}p=(1-0.2)^{7-1}\cdot 0.2$$
But how would I compute it if I wanted to see two sunny days?