mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
17 lines
226 B
Nix
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
|
|
];
|
|
};
|
|
}
|