extraPackages: wrap nushell
This commit is contained in:
parent
a4e31f0dcd
commit
0d08941285
3 changed files with 66 additions and 7 deletions
61
parts/pkgs/extraPackages/nushell-wrapped.nix
Normal file
61
parts/pkgs/extraPackages/nushell-wrapped.nix
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue