nixos/parts/modules/shell/core.nix

18 lines
226 B
Nix
Raw Normal View History

2025-02-03 07:55:17 +01:00
{pkgs, ...}: {
config = {
environment.systemPackages = with pkgs; [
curl
wget
file
git
htop
jq
ripgrep
tmux
whois
man-pages
man-pages-posix
];
};
}