flake/common/terminal.nix

54 lines
2.6 KiB
Nix
Raw Normal View History

2023-09-14 18:56:52 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
appimage-run # Appimage Runner
asciiquarium # Terminal Aquarium
bash-completion # Bash Autocomplete
bat # cat like concatenate or display command
2023-10-03 21:04:17 +02:00
bottom # System Monitor
broot # Directory Navigator
2023-09-14 18:56:52 +02:00
btop # Resource Monitor
carapace # Argument Completer
2023-09-14 18:56:52 +02:00
cbonsai # Terminal Bonsai Tree
2023-12-29 05:45:12 +01:00
delta # syntax-highlighting pager for git
2023-10-03 21:04:17 +02:00
difftastic # diff replacement
2023-09-14 18:56:52 +02:00
du-dust # du command replacement
eza # ls like list command
fd # find command
feh # Image Viewer
fzf # Fuzzy Finder in GO
git # Distributed Version Control System
genact # Nonsense Activity Generator
hollywood # Hollywood Melodrama Technobabble
jq # filter data command
2023-12-03 05:12:00 +01:00
krabby # Terminal Pokemon
2023-12-13 22:41:33 +01:00
lavat # Terminal Lavalamp
2023-10-03 21:04:17 +02:00
monolith # Single HTML Saver
2023-09-14 18:56:52 +02:00
neo # Matrix Digital Rain
neofetch # System Information
nitch # Nim System Fetch
nix-bash-completions # Bash Autocomplete
nms # Effect from 1992 Movie Sneakers
2023-12-13 22:41:33 +01:00
nyancat # Terminal Nyancat
ocrmypdf # OCR Text Layer to Scanned PDFs
2023-10-03 21:04:17 +02:00
ouch # Obvious Unified Compression Helper
2023-09-21 16:06:25 +02:00
pandoc # Markup Converter
2023-09-14 18:56:52 +02:00
pipes # Animated Pipes Terminal Screensaver
2023-10-03 21:04:17 +02:00
procs # Processes, `ps` replacement
2023-09-14 18:56:52 +02:00
ranger # File Manager
ripgrep # Temporarily using ripgrip until ripgrep-all is available again
#ripgrep-all # search command; NOTE: Failed to build, temp removing
2023-09-14 18:56:52 +02:00
sd # find & replace command
#shell-genie # Natural Language Shell Command AI
2023-10-03 21:04:17 +02:00
skim # Fuzzy Finder
2023-10-09 20:16:28 +02:00
starship # Shell Prompt
2023-09-14 18:56:52 +02:00
tealdeer # tldr command
2023-10-03 21:04:17 +02:00
tokei # Code Statistics
2023-10-30 02:06:47 +01:00
ugrep # Grep Replacement
2023-09-14 18:56:52 +02:00
xcowsay # Graphical Cowsay
xorg.xkill # Kill Windows w/ Mouse
zoxide # fast cd directory command
];
2023-09-21 16:06:25 +02:00
}