17ee0e400b
After moving off of Meta, Dotfiles has a greater responsibility to manage configs. Vim, Tmux, and Emacs are now within Stow's purview.
12 lines
267 B
EmacsLisp
12 lines
267 B
EmacsLisp
;;; 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
|