28 lines
673 B
Nix
28 lines
673 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
age.secrets = {
|
|
homeVPN = {
|
|
file = ../../secrets/home-vpn.age;
|
|
owner = "1000";
|
|
};
|
|
homeVPNPassword = {
|
|
file = ../../secrets/home-vpn-password.age;
|
|
owner = "1000";
|
|
};
|
|
};
|
|
services.openvpn.servers = {
|
|
homeVPN = {
|
|
config = "config /run/agenix/homeVPN ";
|
|
autoStart = false;
|
|
updateResolvConf = true;
|
|
};
|
|
};
|
|
systemd.services.openvpn-homeVPN-password = {
|
|
description = "Enter homeVPN password";
|
|
script = "cat /run/agenix/homeVPNPassword | systemd-tty-ask-password-agent";
|
|
wantedBy = [ "openvpn-homeVPN.service" ];
|
|
after = [ "openvpn-homeVPN.service" ];
|
|
};
|
|
}
|