38 lines
520 B
Nix
38 lines
520 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
bat
|
|
highlight
|
|
btop
|
|
eza
|
|
fzf
|
|
git
|
|
gnumake
|
|
neofetch
|
|
neovim
|
|
ripgrep
|
|
tldr
|
|
unzip
|
|
openssl
|
|
wget
|
|
zip
|
|
zoxide
|
|
jq
|
|
lazygit
|
|
lazysql
|
|
less
|
|
mlocate
|
|
tree
|
|
tmux
|
|
tmuxinator
|
|
wget
|
|
zenity
|
|
gum
|
|
yazi
|
|
rsync
|
|
p7zip
|
|
impala
|
|
];
|
|
}
|