about summary refs log tree commit diff
path: root/emacs.d/wpc
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/wpc')
-rw-r--r--emacs.d/wpc/packages/wpc-nix.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/emacs.d/wpc/packages/wpc-nix.el b/emacs.d/wpc/packages/wpc-nix.el
new file mode 100644
index 0000000000..af439c442d
--- /dev/null
+++ b/emacs.d/wpc/packages/wpc-nix.el
@@ -0,0 +1,12 @@
+;;; wpc-nix.el --- Nix support -*- lexical-binding: t -*-
+;; Author: William Carroll <wpcarro@gmail.com>
+
+;;; Commentary:
+;; Configuration to support working with Nix.
+
+;;; Code:
+(use-package nix-mode
+  :mode "\\.nix\\'")
+
+(provide 'wpc-nix)
+;;; wpc-nix.el ends here