mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-22 16:21:04 -05:00
12 lines
298 B
EmacsLisp
12 lines
298 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))
|