aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/emacs.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-05-04 14:15:45 -0700
committerFranck Cuny <franck@fcuny.net>2025-05-04 14:26:51 -0700
commit3424cadc9d812fb043f8e82036c0a1be6d03550c (patch)
treeeb5fb5c1c2fe969bd59584f78639a9ee093a744e /nix/users/fcuny/emacs.nix
parentsome tweaks for wezterm (diff)
downloadinfra-3424cadc9d812fb043f8e82036c0a1be6d03550c.tar.gz
load environment variables properly
we were only loading the one for aspell, but not the $PATH. We actually don't need the one for aspell.
Diffstat (limited to '')
-rw-r--r--nix/users/fcuny/emacs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/users/fcuny/emacs.nix b/nix/users/fcuny/emacs.nix
index 36c93ac..f7f83d6 100644
--- a/nix/users/fcuny/emacs.nix
+++ b/nix/users/fcuny/emacs.nix
@@ -63,6 +63,6 @@ in
];
home.sessionVariables = {
- EDITOR = "emacsclient -t";
+ EDITOR = "${pkgs.emacs}/bin/emacsclient -a=";
};
}