feat(fish): Add neo

This commit is contained in:
punkfairie 2024-11-14 19:13:54 -08:00
parent 84ddc9e3d2
commit ef23b7ddf0
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -1,7 +1,10 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
# general
babelfish babelfish
# for extract()
gnutar gnutar
bzip2 bzip2
bzip3 bzip3
@ -9,6 +12,9 @@
unzip unzip
pax pax
unrar-free unrar-free
# shell goodies
neo
]; ];
programs.fish = { programs.fish = {
@ -106,6 +112,14 @@
end end
''; '';
}; };
neo = {
wraps = "neo";
body = # fish
''
command neo --charset=ascii $argv
'';
};
}; };
}; };
} }