dotfiles.nix/nixos/common/global/system-tools.nix

30 lines
656 B
Nix
Raw Normal View History

2024-01-14 06:29:18 +08:00
{ pkgs, ... }:
2023-07-01 21:46:27 +08:00
{
environment = {
systemPackages = with pkgs; [
# Ensure home-manager is on all systems
home-manager
# Useful system utilities
tree # directory structure
bc # basic calculator
vim # editor
ranger # console file manager
htop # system monitor
2023-07-07 22:14:02 +08:00
scrot # screenshot
2023-10-10 18:59:47 +08:00
direnv # load environment
2023-11-20 12:06:27 +08:00
jq # JSON processor
2024-01-14 06:29:18 +08:00
git # version control
2023-07-01 21:46:27 +08:00
# HTTP
curl # transfer dato to/from server
wget # download files from web
# Archive
unrar # extract roshal archive
unzip # extract zip archive
];
};
}