From 30e2e2b5e04014a72b84003ca925ec30a0662ea6 Mon Sep 17 00:00:00 2001 From: Emmet Date: Thu, 28 Aug 2025 19:49:27 -0500 Subject: [PATCH] Enable wireguard --- hosts/snowfire/hardware-configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/snowfire/hardware-configuration.nix b/hosts/snowfire/hardware-configuration.nix index caab46da..c685a0fe 100644 --- a/hosts/snowfire/hardware-configuration.nix +++ b/hosts/snowfire/hardware-configuration.nix @@ -16,6 +16,7 @@ boot.blacklistedKernelModules = [ "k10temp" ]; boot.kernelParams = [ "amd_pstate=active" "acpi_osi=Linux" "acpi_wake=USB0" ]; boot.extraModulePackages = with config.boot.kernelPackages; [ zenpower ]; + networking.wireguard.enable = true; hardware.opengl.enable = true; hardware.opengl.extraPackages = [ pkgs.rocmPackages.clr.icd ]; hardware.opengl.extraPackages32 = [ ];