20 lines
193 B
Nix
20 lines
193 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
curl
|
|
wget
|
|
htop
|
|
neovim
|
|
tmux
|
|
ripgrep
|
|
fd
|
|
bat
|
|
eza
|
|
fzf
|
|
tree
|
|
fish
|
|
];
|
|
}
|