doomemacs/modules/lang/nix/doctor.el

10 lines
282 B
EmacsLisp
Raw Normal View History

2018-07-16 17:13:53 +02:00
;; -*- lexical-binding: t; no-byte-compile: t; -*-
;;; lang/nix/doctor.el
(unless (executable-find "nix")
(warn! "Couldn't find the nix package manager. nix-mode won't work."))
2018-07-16 17:13:53 +02:00
(unless (executable-find "nixfmt")
(warn! "Couldn't find nixfmt. nix-format-buffer won't work."))
2018-07-16 17:13:53 +02:00