This commit is contained in:
zoey 2025-05-28 19:10:50 -04:00
parent 99745a7f02
commit 7972325396
Signed by: zoey
GPG key ID: 81FB9FECDD6A33E2
17 changed files with 839 additions and 869 deletions

View file

@ -73,75 +73,81 @@ in {
shellAliases = import ../aliases.nix {inherit pkgs lib config;};
};
home.packages = with pkgs; [
gnumake
# Runs programs without installing them
comma
home.packages = with pkgs;
[
gnumake
# Runs programs without installing them
comma
# grep replacement
ripgrep
# grep replacement
ripgrep
# ping, but with cool graph
gping
# ping, but with cool graph
gping
fzf
fzf
# dns client
dogdns
# dns client
dogdns
# neofetch but for git repos
onefetch
# neofetch but for git repos
onefetch
# neofetch but for cpu's
cpufetch
# neofetch but for cpu's
cpufetch
# download from yt and other websites
yt-dlp
# download from yt and other websites
yt-dlp
zsh-history
zsh-history
# man pages for tiktok attention span mfs
tealdeer
# man pages for tiktok attention span mfs
tealdeer
# markdown previewer
glow
# markdown previewer
glow
# profiling tool
hyperfine
# profiling tool
hyperfine
imagemagick
ffmpeg-full
imagemagick
ffmpeg-full
# preview images in terminal
catimg
# preview images in terminal
catimg
# networking stuff
nmap
wget
# networking stuff
nmap
wget
# faster find
fd
# faster find
fd
# http request thingy
xh
# http request thingy
xh
# generate regex
grex
# generate regex
grex
# json thingy
jq
# json thingy
jq
# syncthnig for acoustic people
rsync
# syncthnig for acoustic people
rsync
figlet
# Generate qr codes
qrencode
figlet
# Generate qr codes
qrencode
unzip
] ++ (if !pkgs.stdenv.isDarwin then [
hcxdumptool
hashcat
] else []);
unzip
]
++ (
if !pkgs.stdenv.isDarwin
then [
hcxdumptool
hashcat
]
else []
);
};
}

View file

@ -46,36 +46,42 @@ in {
programs.carapace.enable = true;
programs.carapace.enableNushellIntegration = true;
home.packages = with pkgs; [
gnumake
comma
ripgrep
gping
fzf
dogdns
onefetch
cpufetch
yt-dlp
zsh-history
tealdeer
glow
hyperfine
imagemagick
ffmpeg-full
catimg
nmap
wget
fd
xh
grex
jq
rsync
figlet
qrencode
unzip
] ++ (if !pkgs.stdenv.isDarwin then [
hcxdumptool
hashcat
] else []);
home.packages = with pkgs;
[
gnumake
comma
ripgrep
gping
fzf
dogdns
onefetch
cpufetch
yt-dlp
zsh-history
tealdeer
glow
hyperfine
imagemagick
ffmpeg-full
catimg
nmap
wget
fd
xh
grex
jq
rsync
figlet
qrencode
unzip
]
++ (
if !pkgs.stdenv.isDarwin
then [
hcxdumptool
hashcat
]
else []
);
};
}

View file

@ -80,75 +80,81 @@ in {
shellAliases = import ../aliases.nix {inherit pkgs lib config;};
};
home.packages = with pkgs; [
gnumake
# Runs programs without installing them
comma
home.packages = with pkgs;
[
gnumake
# Runs programs without installing them
comma
# grep replacement
ripgrep
# grep replacement
ripgrep
# ping, but with cool graph
gping
# ping, but with cool graph
gping
# dns client
dogdns
# dns client
dogdns
# neofetch but for git repos
onefetch
# neofetch but for git repos
onefetch
# neofetch but for cpu's
cpufetch
# neofetch but for cpu's
cpufetch
# download from yt and other websites
yt-dlp
# download from yt and other websites
yt-dlp
zsh-history
zsh-history
# man pages for tiktok attention span mfs
tealdeer
# man pages for tiktok attention span mfs
tealdeer
# markdown previewer
glow
# markdown previewer
glow
# profiling tool
hyperfine
# profiling tool
hyperfine
imagemagick
ffmpeg-full
imagemagick
ffmpeg-full
# preview images in terminal
catimg
# preview images in terminal
catimg
# networking stuff
nmap
wget
# networking stuff
nmap
wget
# faster find
fd
# faster find
fd
# http request thingy
xh
# http request thingy
xh
# generate regex
grex
# generate regex
grex
# json thingy
jq
# json thingy
jq
# syncthnig for acoustic people
rsync
# syncthnig for acoustic people
rsync
figlet
# Generate qr codes
qrencode
figlet
# Generate qr codes
qrencode
# script kidde stuff
# script kidde stuff
unzip
] ++ (if !pkgs.stdenv.isDarwin then [
hcxdumptool
hashcat
] else []);
unzip
]
++ (
if !pkgs.stdenv.isDarwin
then [
hcxdumptool
hashcat
]
else []
);
};
}