feat(home/fish): nix-your-shell

This commit is contained in:
punkfairie 2025-03-16 11:20:49 -07:00
parent ade6f3640a
commit e066089547
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -16,6 +16,7 @@ in {
[
# general
babelfish
nix-your-shell # make nix-shell / nix develop use fish
# for fish_greeting()
marleyos.figlet-xero-fonts
@ -63,6 +64,12 @@ in {
set -g fish_key_bindings fish_vi_key_bindings
'';
interactiveShellInit =
# fish
''
${lib.getExe pkgs.nix-your-shell} fish | source
'';
shellAbbrs = {
cp = "cp -iv";
mkdir = "mkdir -pv";