about summary refs log tree commit diff
path: root/modules/workstation/emacs/init.el
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-10-20 21:08:56 +0000
committerAlyssa Ross <hi@alyssa.is>2022-10-20 21:08:56 +0000
commitfa3648194a5406456fb789ce0e16a51b9b8ad3f0 (patch)
tree748e0a27a556b9d7b8c9e206892c8a95e0a2cd94 /modules/workstation/emacs/init.el
parentfb383f2cd224eb479bfee5b046656147125bc600 (diff)
downloadnixlib-fa3648194a5406456fb789ce0e16a51b9b8ad3f0.tar
nixlib-fa3648194a5406456fb789ce0e16a51b9b8ad3f0.tar.gz
nixlib-fa3648194a5406456fb789ce0e16a51b9b8ad3f0.tar.bz2
nixlib-fa3648194a5406456fb789ce0e16a51b9b8ad3f0.tar.lz
nixlib-fa3648194a5406456fb789ce0e16a51b9b8ad3f0.tar.xz
nixlib-fa3648194a5406456fb789ce0e16a51b9b8ad3f0.tar.zst
nixlib-fa3648194a5406456fb789ce0e16a51b9b8ad3f0.zip
modules/emacs: fix browse-url-nixpkgs
Diffstat (limited to 'modules/workstation/emacs/init.el')
-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)))