mirror of
https://github.com/hexolan/dotfiles.git
synced 2026-03-26 18:11:17 +00:00
Left out tooling like `clamav`, for now, as not really looking to bootstrap installs with that. Sandboxes are pretty sufficient a lot of the time (+ setting up `opensnitch` / some other connection-level firewall).
28 lines
438 B
Bash
28 lines
438 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# Repository Setup
|
|
#
|
|
|
|
# TODO: adding additional repositories for packages
|
|
sudo apk add
|
|
|
|
#
|
|
# Packages
|
|
#
|
|
|
|
STANDARD_PKGS = (
|
|
build-essential
|
|
|
|
fastfetch
|
|
kitty
|
|
zoxide
|
|
|
|
neovim
|
|
)
|
|
|
|
# TODO: auditd, apparmor, firejail setups within script (+ apparmor cfgs?)
|
|
# these have better support on Ubuntu/Debian (than a distro like Arch), from testing and usage: https://github.com/roddhjav/apparmor.d
|
|
SECURITY_PKGS = (
|
|
|
|
) |