blob: c92ef0b32c4740ed1029b26dced92394f74c24fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
;;; init-nix.el --- Nix Configuration File -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(use-package nix-mode
:commands nix-repl-show)
(use-package nixfmt
:hook (nix-mode . nixfmt-on-save-mode))
(use-package nix-update
:commands nix-update-fetch)
(provide 'init-nix)
;;; init-nix.el ends here
|