home: clean up fish config

This commit is contained in:
insects 2024-09-29 20:32:57 +02:00
parent d85b3aa807
commit 5dcb0a4505

View file

@ -1,18 +1,17 @@
{ pkgs, ... }: { { pkgs, ... }: {
home.sessionVariables = {
EDITOR = "hx";
USER = "lu";
SHELL = pkgs.fish;
TERM = "xterm-256color";
};
programs.fish = { programs.fish = {
enable = true; enable = true;
functions = { setpath = "test -e $argv[1]; and fish_add_path $argv[1]"; }; functions = { setpath = "test -e $argv[1]; and fish_add_path $argv[1]"; };
interactiveShellInit = '' interactiveShellInit = ''
if test -z "$XDG_RUNTIME_DIR"
set -x XDG_RUNTIME_DIR "/tmp/$USER-runtime-dir"
if test ! -e "$XDG_RUNTIME_DIR"
mkdir "$XDG_RUNTIME_DIR"
chmod 0700 "$XDG_RUNTIME_DIR"
end
end
setpath /opt/local/bin setpath /opt/local/bin
setpath /opt/homebrew/bin setpath /opt/homebrew/bin
setpath ~/.cargo/bin setpath ~/.cargo/bin
@ -21,11 +20,7 @@
setpath ~/.local/bin setpath ~/.local/bin
setpath ~/.bun/bin setpath ~/.bun/bin
setpath ~/Projects/Checkouts/arcanist/bin setpath ~/Projects/Checkouts/arcanist/bin
setpath ~/.config/emacs/bin
set -x EDITOR hx
set -x USER lu
set -x SHELL (which fish)
set -x TERM xterm-256color
''; '';
shellAliases = { shellAliases = {