27 lines
232 B
Nix
27 lines
232 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
git
|
|
wget
|
|
htop
|
|
busybox
|
|
nixfmt-rfc-style
|
|
nixfmt-tree
|
|
|
|
zip
|
|
unzip
|
|
|
|
ripgrep
|
|
eza
|
|
fastfetch
|
|
|
|
];
|
|
|
|
}
|