32 lines
699 B
Nix
32 lines
699 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
# Basic Utilities
|
|
bc pv killall unzip unrar-wrapper unar units
|
|
|
|
# System Monitoring / TUI QoL Tools
|
|
btop iotop tmux byobu
|
|
|
|
# Security / Cryptography
|
|
(pass.withExtensions (ext: with ext; [ pass-otp pass-update ]))
|
|
ssss gnupg pwgen qrencode diceware
|
|
|
|
# Applications
|
|
vim_configurable
|
|
|
|
# File Management
|
|
git ffmpeg restic rclone imagemagick
|
|
|
|
# File Systems
|
|
nfs-utils cifs-utils exfatprogs
|
|
|
|
# Networking Utilities
|
|
dig tinc_pre traceroute wireguard-tools iperf3
|
|
|
|
# NixOS Helpers
|
|
nixos-generators nix-index nix-search-cli
|
|
|
|
# Hardware Utilities
|
|
usbutils pciutils
|
|
];
|
|
}
|