blob: c29ee8965c87ef20f796d36ef113c0ef2efce364 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "Installing NVIDIA drivers..."
cd "/usr/share/nvidia-all-git"
# Install all built packages
/usr/bin/pacman -U --noconfirm *.pkg.tar.zst
}
post_upgrade() {
post_install
}
|