diff options
Diffstat (limited to 'distro')
| -rw-r--r-- | distro/cachyos.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/distro/cachyos.sh b/distro/cachyos.sh new file mode 100644 index 0000000..2e0b36e --- /dev/null +++ b/distro/cachyos.sh @@ -0,0 +1,27 @@ +#!/bin/sh +set -ex + +pkglist='cmake +neovim +tree-sitter-cli +age-plugin-yubikey +rage-encryption +libfido2 +pcsclite +ccid +oath-toolkit +restic +geary +darktable +firewalld +wireguard-tools +lsof +ksshaskpass +nftables' +sudo pacman -S --needed $(echo "$pkglist" | awk '{print $1}' | tr '\n' ' ') + +sudo systemctl disable ufw || true +sudo systemctl stop ufw || true + +# sudo systemctl enable firewalld || true +# sudo systemctl start firewalld || true |
