syspile/modules/generic/base-pkgs.nix
2025-07-29 00:41:29 -07:00

15 lines
207 B
Nix

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