15 lines
369 B
EmacsLisp
15 lines
369 B
EmacsLisp
;;; config.el --- description -*- lexical-binding: t; -*-
|
|
|
|
(def-package! company-nixos-options
|
|
:when (featurep! :completion company)
|
|
:after nix-mode
|
|
:config
|
|
(set-company-backend! 'nix-mode 'company-nixos-options))
|
|
|
|
(def-package! nix-update
|
|
:after nix-mode
|
|
:commands (nix-update-fetch))
|
|
|
|
(def-package! nix-repl
|
|
:after nix-mode
|
|
:commands (nix-repl-show))
|