diff --git a/modules/tools/collab/config.el b/modules/tools/collab/config.el index 32dc2ebfe..427abefe1 100644 --- a/modules/tools/collab/config.el +++ b/modules/tools/collab/config.el @@ -3,6 +3,6 @@ (use-package! crdt :commands (crdt-share-buffer crdt-connect) :init - (when (featurep! +tunnel) + (when (modulep! +tunnel) (setq crdt-use-tuntox t) (setq crdt-tuntox-password-in-url t))) diff --git a/modules/tools/collab/doctor.el b/modules/tools/collab/doctor.el index 8d5caacb9..a133e2389 100644 --- a/modules/tools/collab/doctor.el +++ b/modules/tools/collab/doctor.el @@ -1,4 +1,5 @@ ;;; tools/collab/doctor.el -*- lexical-binding: t; -*- -(when (and (featurep! +tunnel) (not (executable-find "tuntox"))) +(when (and (modulep! +tunnel) + (not (executable-find "tuntox"))) (warn! "Couldn't find tuntox command. This needs to be on your path for the +tunnel flag to work properly."))