Klimi's new dotfiles with stow.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

26 líneas
585 B

hace 4 años
  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