2018-07-16 17:13:53 +02:00
|
|
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
|
|
;;; lang/nix/doctor.el
|
|
|
|
|
2018-07-17 10:03:17 +02:00
|
|
|
(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")
|
2018-07-17 10:03:17 +02:00
|
|
|
(warn! "Couldn't find nixfmt. nix-format-buffer won't work."))
|
2018-07-16 17:13:53 +02:00
|
|
|
|