13 lines
250 B
Nix
13 lines
250 B
Nix
{auto-openvpn, ...}: {
|
|
imports = [
|
|
auto-openvpn.nixosModules.auto-openvpn
|
|
];
|
|
services.auto-openvpn = {
|
|
enable = true;
|
|
enableIPv6 = true;
|
|
interface = "ens18";
|
|
address = "173.249.5.230";
|
|
users = ["handy" "lenovo"];
|
|
};
|
|
}
|