dotfiles/modules/services/openvpn.nix

12 lines
194 B
Nix
Raw Normal View History

2022-03-07 12:02:20 +01:00
{ config, lib, pkgs, ... }:
{
services.openvpn.servers = {
homeVPN = {
config = "config /run/agenix/homeVPN ";
autoStart = false;
updateResolvConf = true;
};
};
}