aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/shell.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-27 19:12:21 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-27 19:12:21 -0800
commitd901c7ab4f3a134deb4970e849bd8143639856ca (patch)
tree3fcf8de20bbcb2c0c5507ba048404b7ed27d877a /nix/users/fcuny/shell.nix
parentremove mention of other git servers (diff)
downloadinfra-d901c7ab4f3a134deb4970e849bd8143639856ca.tar.gz
drop aspell and set editor to code
Diffstat (limited to 'nix/users/fcuny/shell.nix')
-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";
};
}