Skip to content

Commit

Permalink
Merge pull request #91 from purcell/relative-executable-paths
Browse files Browse the repository at this point in the history
Don't freeze full executable paths at load time
  • Loading branch information
matthewbauer committed Sep 4, 2019
2 parents ddf0917 + 0075080 commit 7d681ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nix.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@
"Nix-related customizations"
:group 'languages)

(defcustom nix-executable (executable-find "nix")
(defcustom nix-executable "nix"
"Nix executable location."
:group 'nix
:type 'string)

(defcustom nix-build-executable (executable-find "nix-build")
(defcustom nix-build-executable "nix-build"
"Nix-build executable location."
:group 'nix
:type 'string)

(defcustom nix-instantiate-executable (executable-find "nix-instantiate")
(defcustom nix-instantiate-executable "nix-instantiate"
"Nix executable location."
:group 'nix
:type 'string)

(defcustom nix-store-executable (executable-find "nix-store")
(defcustom nix-store-executable "nix-store"
"Nix executable location."
:group 'nix
:type 'string)

(defcustom nix-shell-executable (executable-find "nix-shell")
(defcustom nix-shell-executable "nix-shell"
"Location of ‘nix-shell’ executable."
:group 'nix
:type 'string)
Expand Down

0 comments on commit 7d681ff

Please sign in to comment.