Klimi's new dotfiles with stow.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

26 lignes
585 B

il y a 4 ans
  1. ;;; nix-store.el -- run nix commands in Emacs -*- lexical-binding: t -*-
  2. ;; Author: Matthew Bauer <mjbauer95@gmail.com>
  3. ;; Homepage: https://github.com/NixOS/nix-mode
  4. ;; Keywords: nix
  5. ;; Version: 1.4.0
  6. ;; This file is NOT part of GNU Emacs.
  7. ;;; Commentary:
  8. ;;; Code:
  9. (require 'nix)
  10. (defun nix-store-realise (path)
  11. "Realise a path asynchronously.
  12. PATH the path within /nix/store to realise"
  13. (make-process
  14. :buffer nil
  15. :command (list nix-store-executable "-r" path)
  16. :noquery t
  17. :name (format "*nix-store*<%s>" path)))
  18. (provide 'nix-store)
  19. ;;; nix-store.el ends here