🚀 add openvpn service

This commit is contained in:
Moritz Böhme 2022-03-07 12:02:20 +01:00
parent eb17617025
commit eabb8bd1a7
No known key found for this signature in database
GPG key ID: 213820E2795F5CF5
5 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
services.openvpn.servers = {
homeVPN = {
config = "config /run/agenix/homeVPN ";
autoStart = false;
updateResolvConf = true;
};
};
}