docs(tips): fix argument order

Changed files
+3 -3
docs
+3 -3
docs/tips_n_tricks.md
···
```
## overlays
-
overlays are useful when you want to refer to refer to a package globally.
the gist of overlays is as thus:
-
> overlay is just `prev: final: {}` functions where dumbed down idea is
> that you do pkg = prev.pkg.override and refer to everything else from
> final
>
···
(poorly made) example overlays can be found [here](https://github.com/soopyc/nixos-config/blob/master/overlays/discord-canary.nix)
-
*note: replace `self: super:` with `prev: final:` for consistency*
*concept and content by \@natsukagami*
···
```
## overlays
+
overlays are useful when you want to refer to a package globally.
the gist of overlays is as thus:
+
> overlay is just `final: pref: {}` functions where dumbed down idea is
> that you do pkg = prev.pkg.override and refer to everything else from
> final
>
···
(poorly made) example overlays can be found [here](https://github.com/soopyc/nixos-config/blob/master/overlays/discord-canary.nix)
+
*note: replace `self: super:` with `final: prev:` for consistency*
*concept and content by \@natsukagami*