23 lines
487 B
Nix
23 lines
487 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
vim
|
|
gnumake
|
|
gcc
|
|
wget
|
|
curl
|
|
unzip
|
|
tree
|
|
ripgrep
|
|
translate-shell
|
|
xclip
|
|
powertop
|
|
brightnessctl
|
|
ntfs3g
|
|
pciutils
|
|
usbutils
|
|
inxi
|
|
];
|
|
}
|
|
|