From 5c8f6f23bd39f192746121741d2f9b10e1ed540f Mon Sep 17 00:00:00 2001 From: Lumpiasty Date: Tue, 9 Jun 2026 02:08:47 +0200 Subject: [PATCH] enable undervolt settings and expose 8080 --- hosts/acer.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/acer.nix b/hosts/acer.nix index 9a2d992..aae82c5 100644 --- a/hosts/acer.nix +++ b/hosts/acer.nix @@ -100,6 +100,8 @@ rec { # For dev vm stuff networking.firewall.trustedInterfaces = [ "br0" ]; + # Local LLaMA.cpp server + networking.firewall.allowedTCPPorts = [ 8080 ]; # Battery driver boot.extraModulePackages = [ @@ -114,8 +116,9 @@ rec { ]; boot.kernelModules = [ "acer-wmi-ext" ]; - # Breaks sleep, not enabling for now - # lumpiasty.acerUndervolt = true; + # Installs ryzenadj + ryzen_smu kernel module for manual undervolt experiments. + # Does not auto-apply any tuning yet. + lumpiasty.acerUndervolt = true; boot.initrd.kernelModules = [ "amdgpu" "thunderbolt" ];