diff --git a/hosts/nixos/deck/system.nix b/hosts/nixos/deck/system.nix index 0b411ff..b679894 100644 --- a/hosts/nixos/deck/system.nix +++ b/hosts/nixos/deck/system.nix @@ -6,6 +6,7 @@ ./disk-config.nix ../system-default.nix # Common NixOS system configuration ../../../modules/desktop.nix + ../../../modules/wireguard.nix ]; # Desktop module configuration (disable GDM for Jovian autoStart mode) @@ -32,6 +33,15 @@ firewall.enable = false; }; + # WireGuard VPN configuration + services.wireguard-custom = { + enable = true; + mode = "client"; + ip = "10.2.2.40/32"; + serverEndpoint = "91.98.84.215:51820"; + serverPublicKey = "46QHjSzAas5g9Hll1SCEu9tbR5owCxXAy6wGOUoPwUM="; + }; + # Hardware support for Steam Deck (AMD APU) hardware = { enableRedistributableFirmware = true; diff --git a/modules/ssh.nix b/modules/ssh.nix index 01161dd..2c34162 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -49,7 +49,6 @@ setEnv = { TERM = "xterm-256color"; }; - proxyJump = "vps"; }; "vps" = {