openvpn-init

This commit is contained in:
andromeda
2026-01-12 09:07:47 +01:00
parent e78f3510af
commit 038a82e400
3 changed files with 31 additions and 0 deletions

11
services/vpn.nix Normal file
View File

@@ -0,0 +1,11 @@
{auto-openvpn, ...}: {
imports = [
auto-openvpn.nixosModules.auto-openvpn
];
services.auto-openvpn = {
enable = true;
interface = "ens18";
address = "173.249.5.230";
users = ["handy" "lenovo"];
};
}