From fa3648194a5406456fb789ce0e16a51b9b8ad3f0 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Thu, 20 Oct 2022 21:08:56 +0000 Subject: modules/emacs: fix browse-url-nixpkgs --- modules/workstation/emacs/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/workstation/emacs/init.el') 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 '' " full-attr-quoted)) + (command (concat "nix --extra-experimental-features nix-command eval --raw -f '' " full-attr-quoted)) (homepage (shell-command-to-string command))) (browse-url homepage))) -- cgit 1.4.1