extraPackages: wrap nushell

This commit is contained in:
Charlie Root 2024-09-12 09:37:27 +02:00
commit 0d08941285
3 changed files with 66 additions and 7 deletions

View file

@ -0,0 +1,61 @@
{
inputs,
lib,
pkgs,
...
}: let
nushell-wrapped = inputs.wrapper-manager.lib.build {
inherit pkgs;
modules = [
{
wrappers.nushell-wrapped = {
basePackage = pkgs.nushell;
pathAdd = with pkgs; [
# better cd
zoxide
#better ls
eza
# better grep
ripgrep
# better dig
dogdns
# simply the best fetch tool out there
microfetch
fzf
iputils
gnumake
gping
asciinema
inetutils
scc
oefetch
wget
cpufetch
yt-dlp
tealdeer
glow
hyperfine
imagemagick
ffmpeg-full
catimg
nmap
wget
fd
jq
rsync
figlet
unzip
zip
];
};
}
];
};
in
nushell-wrapped