spacemacs/layers/+os/nixos/packages.el
Eivind Fonn 08561d8631 core: implement :depends for package declarations
This replaces the older pattern
:toggle (configuration-layer/package-usedp ..)

This implementation ensures that :disabled-for honors dependent packages, i.e.
if package a depends on package b, which is owned by layer c, and layer c is
disabled for layer d, then neither package a nor b will be configured for layer
d. Previously, this was only true for package a, but not b.

This commit also fixes:

- configuration-layer/describe-package now shows which post-init and pre-init
  functions are disabled, if any
- Does not recreate all layer objects unconditionally when calling
  configuration-layer/discover-layers. Previously, this led to all layers being
  recreated after e.g. `SPC h SPC`, without any of the dotfile information.
  Since this information is now necessary for
  configuration-layer/describe-package, it’s important that we don’t clear the
  indexed layers when invoking this function.
2017-06-22 11:53:05 +02:00

41 lines
1.1 KiB
EmacsLisp

(setq nixos-packages
'(
company
flycheck
(company-nixos-options :toggle
(configuration-layer/package-usedp 'company))
(helm-nixos-options :depends helm)
nix-mode
nixos-options
))
(defun nixos/post-init-company ()
(let ((backends '(company-capf)))
(when (configuration-layer/package-usedp 'company-nixos-options)
(add-to-list 'backends 'company-nixos-options t))
(eval `(spacemacs|add-company-backends
:backends ,backends
:modes nix-mode))))
(defun nixos/init-company-nixos-options ()
(use-package company-nixos-options
:defer t))
(defun nixos/init-helm-nixos-options ()
(use-package helm-nixos-options
:defer t
:init
(progn
(spacemacs/set-leader-keys
"h>" 'helm-nixos-options))))
(defun nixos/init-nix-mode ()
(use-package nix-mode)
(add-to-list 'spacemacs-indent-sensitive-modes 'nix-mode))
(defun nixos/init-nixos-options ()
(use-package nixos-options :defer t))
(defun nixos/post-init-flycheck ()
(spacemacs/enable-flycheck 'nix-mode))