mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-19 10:56:05 -07:00
24 lines
1.3 KiB
Nix
24 lines
1.3 KiB
Nix
{ config, lib, pkgs, user, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
bash # GNU Bourne-Again SHell, a command language interpreter for Unix-like operating systems
|
|
bash-completion # Provides programmable completion for the bash shell
|
|
tmux # Terminal multiplexer, allowing multiple terminal sessions within a single window
|
|
killall # Command-line utility to terminate processes by name
|
|
pciutils # Utilities for inspecting and manipulating devices connected to the PCI bus
|
|
pinentry-curses # Simple curses-based passphrase entry dialog for GnuPG
|
|
unzip # Command-line utility for extracting files from ZIP archives
|
|
vim # Text editor that is highly configurable and widely used, especially in the Unix environment
|
|
|
|
sesh # Smart session manager for the terminal
|
|
zoxide # Fast cd command that learns your habits
|
|
ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern
|
|
fzf # Command-line fuzzy finder for Unix-like operating systems
|
|
nix-search-cli # Command-line utility for searching the Nix package repository
|
|
trash-cli # Command-line interface to the freedesktop.org Trash
|
|
|
|
btop # Terminal-based resource monitor, providing an interactive view of system resources
|
|
nnn # Terminal file manager with a focus on performance and ease of use
|
|
];
|
|
}
|