From 2561688c0443b97b760a79f97a975e4d60bf8b30 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sat, 30 Dec 2023 00:35:53 -0500 Subject: [PATCH] Enable wireguard for desktop --- hosts/nullbox/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/nullbox/configuration.nix b/hosts/nullbox/configuration.nix index 9ee7f9a..f8e9b82 100644 --- a/hosts/nullbox/configuration.nix +++ b/hosts/nullbox/configuration.nix @@ -39,6 +39,11 @@ }; }; + networking.wg-quick.interfaces.wg0 = { + configFile = "/etc/wireguard/wg0.conf"; + autostart = true; + }; + # Use the systemd-boot EFI boot loader. # boot.loader.systemd-boot.enable = true; # boot.loader.efi.canTouchEfiVariables = true;