add wireguard to deck
This commit is contained in:
parent
061d5bf544
commit
a25f34b10f
2 changed files with 10 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue