This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/system/cli.nix

15 lines
174 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
2021-12-15 05:11:38 +00:00
environment.systemPackages = with pkgs; [
2022-03-05 04:41:38 +00:00
cmake
2021-12-15 05:11:38 +00:00
htop
jq
2022-03-05 04:41:38 +00:00
killall
ripgrep
2021-12-15 05:11:38 +00:00
silver-searcher
2022-03-05 04:41:38 +00:00
tmux
unzip
zsh
2021-12-15 05:11:38 +00:00
];
}