nixos/parts/modules/shell/core.nix
2025-02-04 07:53:18 +01:00

17 lines
226 B
Nix

{pkgs, ...}: {
config = {
environment.systemPackages = with pkgs; [
curl
wget
file
git
htop
jq
ripgrep
tmux
whois
man-pages
man-pages-posix
];
};
}