From 05082b23cc81aef9003495e783849f3e59a31900 Mon Sep 17 00:00:00 2001 From: Lilly Date: Wed, 7 Jan 2026 08:48:49 +0000 Subject: [PATCH] Auto-commit: 2026-01-07 08:48:49 --- options.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/options.nix b/options.nix index 6bea872..f51e905 100644 --- a/options.nix +++ b/options.nix @@ -14,7 +14,15 @@ virtualisation.enable = lib.mkEnableOption "Enable Virualisation Tools"; - disableAmdBoost = lib.mkEnableOption "Disable AMD CPU Boost"; + amd = { + boost.disable = lib.mkEnableOption "Disable CPU Boost"; + performancePreference = lib.mkOption { + type = lib.types.str; + default = "balance_performance"; + example = "balance_performance"; + description = "Performance Preference to set"; + }; + }; desktop = { enable = lib.mkEnableOption "Is a Desktop System";