5 Commits

Author SHA1 Message Date
andromeda
47aa29ba33 finally fix ipv6? 2026-01-12 10:06:28 +01:00
andromeda
0970f7d0ee fix finally? 2026-01-12 09:54:54 +01:00
andromeda
e5746332bb persist vpn conf 2026-01-12 09:49:13 +01:00
andromeda
e38e0b95dc disable ipv6 2026-01-12 09:36:48 +01:00
andromeda
e6669a9d88 add openvpn 2026-01-12 09:34:25 +01:00
2 changed files with 11 additions and 0 deletions

View File

@@ -19,6 +19,9 @@
# networking
./modules/nixos/laptop.nix
# vpn
./modules/nixos/openvpn-client.nix
# ly display manager
./modules/nixos/ly.nix

View File

@@ -0,0 +1,8 @@
{lib, ...}: {
services.openvpn.servers = {
"173.249.5.230" = {config = ''config /etc/openvpn-confs/173.249.5.230.ovpn'';};
};
networking.enableIPv6 = lib.mkForce false;
environment.persistence."/persist".directories = ["/etc/openvpn-confs"];
boot.kernelParams = ["ipv6.disable=1"];
}