Update WireGuard configuration to disable secureHost and adjust private key handling

- Changed secureHost setting from true to false in toggles.nix.
- Modified wireguard-linode.nix to use a default private key path when secureHost is false, enhancing flexibility in key management.
This commit is contained in:
Danilo Reyes
2025-10-28 13:31:40 -06:00
parent 431e145992
commit ac48e8c86b
2 changed files with 7 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ _: {
locale = "en_US.UTF-8";
wireguard.enable = true;
network.enable = true;
secureHost = true;
secureHost = false;
ips = {
vps = "51.222.141.104";
wg-vps = "10.77.0.1";