15 lines
143 B
Nix
15 lines
143 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
neofetch
|
|
git
|
|
curl
|
|
unzip
|
|
htop
|
|
btop
|
|
iftop
|
|
];
|
|
}
|