import system-tools.nix

This commit is contained in:
♥ Minnie ♥ 2023-07-01 21:46:27 +08:00
parent fccfaa7106
commit 175d8daf30
3 changed files with 32 additions and 17 deletions

View file

@ -0,0 +1,25 @@
{ 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
# HTTP
curl # transfer dato to/from server
wget # download files from web
# Archive
unrar # extract roshal archive
unzip # extract zip archive
];
};
}