mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-04 22:20:38 +01:00
12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# This script adds support for connecting to a VPN with OpenVPN.
|
||
|
# Alternatively, you can also use it as a server and host your
|
||
|
# own VPN.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/OpenVPN
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
pacman -S openvpn
|