aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nix/users/fcuny/shell.nix16
1 files changed, 2 insertions, 14 deletions
diff --git a/nix/users/fcuny/shell.nix b/nix/users/fcuny/shell.nix
index b7d30d0..9bae765 100644
--- a/nix/users/fcuny/shell.nix
+++ b/nix/users/fcuny/shell.nix
@@ -30,12 +30,6 @@ in
jless
jq
yq
-
- # dicts
- aspell
- aspellDicts.en
- aspellDicts.en-computers
- aspellDicts.en-science
]
++ (lib.optionals (isLinux) [ htop ]);
@@ -92,18 +86,12 @@ in
};
home.sessionVariables = {
- ASPELL_CONF = "dict-dir ${
- pkgs.buildEnv {
- name = "aspell-all-dicts";
- paths = lib.collect lib.isDerivation pkgs.aspellDicts;
- }
- }/lib/aspell";
- EDITOR = "emacsclient -a=";
+ EDITOR = "code --wait";
HOMEBREW_NO_AUTO_UPDATE = 1;
LESS = "-FRSXM";
LESSCHARSET = "utf-8";
PAGER = "less";
SHELL = "${pkgs.fish}/bin/fish";
- VISUAL = "emacsclient -a=";
+ VISUAL = "code --wait";
};
}