15 lines
207 B
Nix
15 lines
207 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
ripgrep
|
|
fd
|
|
git
|
|
git-lfs
|
|
jujutsu
|
|
vim
|
|
curl
|
|
htop
|
|
btop
|
|
;
|
|
};
|
|
};
|