Possible to use Inkdrop Sync Server on Mac and Don't Sync on Windows?

I want my notes to be private ( not on any server ) on my Windows install, and using the Inkdrop Sync Server on my Mac, is this possible under my account?
I understand that this will produce a whole different set of notebooks between the two machines, this is my intent.

Hi Chris,

Yes, that’s possible. To disable sync before logging in, set core.db.remote.disabled to true in your config.json like so:

{
  "*": {
    "core": {
      "db": {
        "remote": {
          "disabled": true
        }
      },
...