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

28 lines
594 B
Nix
Raw Normal View History

2023-07-01 21:46:27 +08:00
{ pkgs, ... }:
{
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-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
];
};
}