nix/nixos/common/packages/small.nix

25 lines
880 B
Nix
Raw Normal View History

2024-05-12 11:28:32 +02:00
{ pkgs, system, ... }: {
2024-05-01 04:14:00 +02:00
# List packages installed in system profile
environment.systemPackages = with pkgs; [
tmux # terminal multiplexer
rbw # CLI app for Bitwarden
dconf # Required for stylix
ripgrep # Better grep
git # git!
bat # Like cat, but with syntax highlighting
eza # like ls, but prettier
duf # replacement / prettier UI for df
2024-06-27 08:34:39 +02:00
iftop # interface top - network usage
2024-05-01 04:14:00 +02:00
gnupg # GNU Privacy Guard
screen # Terminal screen manager
btop # like htop, but prettier
sshpass # ssh password helper
fd # alternative to "Find"
cryptsetup # used to open LUKS devices
fish # Shell
fastfetch # system information viewer
zoxide # Souped up "cd"
rsync # copy/sync
];
}