Introduce config.me.optimizations.enable to toggle optimizations.

This is more granular than the buildingIso setting.
This commit is contained in:
Tom Alexander
2025-05-04 15:12:41 -04:00
parent a36ebbf94c
commit c68a6aaa19
9 changed files with 111 additions and 77 deletions

View File

@@ -9,7 +9,12 @@
imports = [ ];
options.me = {
optimizations.enable = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to enable CPU optimizations (will trigger a rebuild from source).";
};
};
# options.me.graphics_card_type = lib.mkOption {