nix/nixos/common/packages/small.nix
2024-11-19 05:38:55 +01:00

27 lines
1 KiB
Nix

{ pkgs, ... }: {
# List packages installed in system profile
environment.systemPackages = with pkgs; [
tailspin # Log file highlighter
unzip # Better unzip packages
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
iftop # interface top - network usage
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
nix-search-cli # nix package cli search
];
}