about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--modules/workstation/emacs/init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/workstation/emacs/init.el b/modules/workstation/emacs/init.el
index 2bd15bba4759..5c1fbc4c308a 100644
--- a/modules/workstation/emacs/init.el
+++ b/modules/workstation/emacs/init.el
@@ -201,7 +201,7 @@ point."
   "Open a browser to the homepage for the Nixpkgs attribute ATTR."
   (interactive "sAttribute: ")
   (let* ((full-attr-quoted (shell-quote-argument (concat attr ".meta.homepage")))
-	 (command (concat "nix eval --raw -f '<nixpkgs>' " full-attr-quoted))
+	 (command (concat "nix --extra-experimental-features nix-command eval --raw -f '<nixpkgs>' " full-attr-quoted))
 	 (homepage (shell-command-to-string command)))
     (browse-url homepage)))