28 lines
645 B
Nix
28 lines
645 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
libs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [
|
|
#CLI tools
|
|
imagemagick #Used as a dependency for Zenless Zone Zero
|
|
#pdftk #PDF toolkit
|
|
#yt-dlp #YouTube and others video downloader
|
|
tailscale #VPN
|
|
#speedtest-cli #Internet speed tester
|
|
#duplicati
|
|
#open-webui
|
|
#cloudflare-warp
|
|
#ddrescue
|
|
#texliveFull #LaTeX PDF maker
|
|
lazygit #Git CLI tool with TUI
|
|
#gtypist #Typing tutor
|
|
#powertop #Power consumption monitor and optimizer
|
|
#file #File type identifier
|
|
#hashcat #Password recovery/cracking tool
|
|
#packwiz #A Minecraft modpack editor
|
|
];
|
|
}
|