Files
nixos/system/modules/packages.nix

38 lines
520 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{ config, pkgs, ... }:
{
2026-02-22 22:11:15 +00:00
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
2026-02-25 00:25:09 +00:00
gum
2026-02-22 22:11:15 +00:00
yazi
rsync
p7zip
2026-02-25 00:25:09 +00:00
impala
2026-02-22 22:11:15 +00:00
];
2026-02-22 19:54:17 +00:00
}