This commit is contained in:
Zsolt Ero
2025-09-18 01:11:07 +02:00
parent a8bcc9c480
commit 8e58957651
3 changed files with 66 additions and 7 deletions

View File

@@ -33,10 +33,46 @@ def pkg_base(c):
#
'python3',
'python3-venv',
#
'acpid',
'autojump',
'bash-completion',
'btop',
'ctop',
'dbus',
'direnv',
'fd-find',
'file',
'ioping',
'libffi-dev',
'libssl-dev',
'lsof',
'man-db',
'mc',
'nano',
'ncdu',
'net-tools',
'netbase',
'nethogs',
'openssh-client',
'p7zip-full',
'pkg-config',
'psmisc',
'ripgrep',
'silversearcher-ag',
'time',
'tmux',
#
# 'dstat',
# 'iperf3',
# 'iproute2',
# 'nasm',
]
apt_get_install(c, ' '.join(pkg_list))
c.sudo('ln -s $(which fdfind) /usr/local/bin/fd', warn=True)
def pkg_upgrade(c):
apt_get_update(c)