j: +officevpn by luis

This commit is contained in:
jeschli 2018-07-31 16:36:51 +02:00
parent 676f5668de
commit 63a761b4da
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
nixpkgs.config.packageOverrides = pkgs: {
openvpn = pkgs.openvpn.override { pkcs11Support = true; useSystemd = false;};
};
environment.systemPackages = with pkgs; [
opensc
openvpn
yubikey-manager
];
services.pcscd.enable = true;
# To start the vpn manually execute
# $ openvpn --config clien.ovpn
}