From 0d08d504dfafcb3dcd9019681a45abe9810b8a7c Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Thu, 11 Apr 2024 16:26:23 -0700 Subject: [PATCH] Nix language support for Emacs --- thoom-emacs/init.el | 1 + thoom-emacs/modules/thoom-nix.el | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 thoom-emacs/modules/thoom-nix.el diff --git a/thoom-emacs/init.el b/thoom-emacs/init.el index 64d462a..a2d8906 100644 --- a/thoom-emacs/init.el +++ b/thoom-emacs/init.el @@ -18,4 +18,5 @@ (require 'thoom-tweaks) (require 'thoom-org) (require 'thoom-lisp) +(require 'thoom-nix) (require 'thoom-git) diff --git a/thoom-emacs/modules/thoom-nix.el b/thoom-emacs/modules/thoom-nix.el new file mode 100644 index 0000000..954eb71 --- /dev/null +++ b/thoom-emacs/modules/thoom-nix.el @@ -0,0 +1,5 @@ +(provide 'thoom-nix) + +(use-package nix-mode + :ensure t + :mode "\\.nix\\'")