commit fbc12efeed23417d0f999c8cd9be895837a8ae7a parent cd834ed664f9a2b5256ce12cfb4243c89109e959 Author: Vincent Demeester <vincent@sbr.pm> Date: Wed, 29 Aug 2018 15:52:59 +0200 Add GOPATH env variable to emacs daemon... ... I need to find a way to set it up from somewhere else... Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | emacs.nix | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/emacs.nix b/emacs.nix @@ -8,7 +8,7 @@ }; Service = { Environment = '' - PATH=/home/vincent/bin:/home/vincent/.local/npm/bin:/run/wrappers/bin:/etc/profiles/per-user/vincent/bin:${config.home.profileDirectory}/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin ASPELL_CONF=dict-dir=/home/vincent/.nix-profile/lib/aspell + PATH=/home/vincent/bin:/home/vincent/.local/npm/bin:/run/wrappers/bin:/etc/profiles/per-user/vincent/bin:${config.home.profileDirectory}/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin GOPATH=/home/vincent ASPELL_CONF=dict-dir=/home/vincent/.nix-profile/lib/aspell ''; Type = "forking"; ExecStart = "/home/vincent/.nix-profile/bin/emacs --daemon"; @@ -25,7 +25,7 @@ }; Service = { Environment = '' - PATH=/home/vincent/bin:/home/vincent/.local/npm/bin:/run/wrappers/bin:/etc/profiles/per-user/vincent/bin:${config.home.profileDirectory}/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin ASPELL_CONF=dict-dir=/home/vincent/.nix-profile/lib/aspell + PATH=/home/vincent/bin:/home/vincent/.local/npm/bin:/run/wrappers/bin:/etc/profiles/per-user/vincent/bin:${config.home.profileDirectory}/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin GOPATH=/home/vincent ASPELL_CONF=dict-dir=/home/vincent/.nix-profile/lib/aspell ''; Type = "forking"; ExecStart = "/home/vincent/.nix-profile/bin/emacs --daemon=org";