This commit is contained in:
teldra 2021-05-12 18:09:13 +02:00
parent 9c16ecd2c1
commit 928d592f16
2 changed files with 12 additions and 1 deletions

8
config
View File

@ -1,7 +1,13 @@
lastminute() {
#addpkg vlc
servicesenable sshd
#servicesenable sshd
#servicesdisable sshd
#ignorepkg openssh
#removepkg mpv
}
os_config() {
addpkg tmux starship vivid browserpass nfs-utils chezmoi pipewire alsa-pipewire libjack-pipewire libspa-v4l2
addpkg zsh zsh-autosuggestions zsh-completions zsh-history-substring-search zsh-syntax-highlighting
servicesenable sshd
}

View File

@ -3,3 +3,8 @@ declare -f lastminute
if yesno "Lastminute Changes" y; then
lastminute
fi
declare -f os_config
if yesno "O's config?" y; then
os_config
fi