Auto-commit: 2026-01-07 08:50:52

This commit is contained in:
2026-01-07 08:50:52 +00:00
parent 89e585b0ba
commit f932e1df89

View File

@@ -1,6 +1,7 @@
{ config, lib, ... }: { config, lib, ... }:
{ {
systemd.tmpfiles.rules = [ systemd.tmpfiles.rules = [
lib.optionalString config.my.disableAmdBoost "w /sys/devices/system/cpu/cpufreq/boost - - - - 0" lib.optionalString config.my.amd.boost.disable "w /sys/devices/system/cpu/cpufreq/boost - - - - 0"
"w /sys/devices/system/cpu/cpu*/cpufreq/energy_performance_preference - - - - ${config.my.amd.performancePreference}"
]; ];
} }