2024-11-18 20:48:16 +01:00
|
|
|
{ pkgs, ... }: {
|
2024-05-01 04:14:00 +02:00
|
|
|
# List packages installed in system profile
|
|
|
|
environment.systemPackages = with pkgs; [
|
2024-11-19 05:38:55 +01:00
|
|
|
tailspin # Log file highlighter
|
2024-11-05 03:01:23 +01:00
|
|
|
unzip # Better unzip packages
|
2024-08-10 15:22:32 +02:00
|
|
|
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
|
2024-12-16 01:44:58 +01:00
|
|
|
pv # Display status for commands
|
2024-05-01 04:14:00 +02:00
|
|
|
];
|
|
|
|
}
|