branch: elpa/nix-mode
commit f7fa332705698bce7b5f61520c3b2aa1ab4fd3db
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Add nix-shell custom group
---
nix-shell.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/nix-shell.el b/nix-shell.el
index 42e8ca9660..cb7725eaf4 100644
--- a/nix-shell.el
+++ b/nix-shell.el
@@ -19,9 +19,13 @@
;; (require 'nix-mode)
(require 'term)
+(defgroup nix-shell nil
+ "Customizations for nix-shell"
+ :group nix)
+
(defcustom nix-shell-executable "nix-shell"
"Location of nix-shell executable."
- :group 'nix)
+ :group 'nix-shell)
;;;###autoload
(defun nix-shell (path attribute)