diff options
| author | andromeda <andromeda@lenovo> | 2026-01-12 09:34:25 +0100 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-01-12 09:34:25 +0100 |
| commit | e6669a9d88cb22216193b8fe1bd2766db90773d1 (patch) | |
| tree | 9eecf0368a053e6ccfbb65e0feb0ac4bfa5fb3f5 | |
| parent | de911e358b0bf313f9e6ad31525246186309f0a9 (diff) | |
add openvpn
| -rw-r--r-- | machines.nix | 3 | ||||
| -rw-r--r-- | modules/nixos/openvpn-client.nix | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/machines.nix b/machines.nix index 04757bc..6aaf77b 100644 --- a/machines.nix +++ b/machines.nix @@ -19,6 +19,9 @@ # networking ./modules/nixos/laptop.nix + # vpn + ./modules/nixos/openvpn-client.nix + # ly display manager ./modules/nixos/ly.nix diff --git a/modules/nixos/openvpn-client.nix b/modules/nixos/openvpn-client.nix new file mode 100644 index 0000000..4ad2a4b --- /dev/null +++ b/modules/nixos/openvpn-client.nix @@ -0,0 +1,5 @@ +{ + services.openvpn.servers = { + "173.249.5.230" = {config = ''config /root/nixos/openvpn/173.249.5.230.ovpn'';}; + }; +} |
