Enable optimized builds for steam deck.

This commit is contained in:
Tom Alexander
2025-03-24 19:54:09 -04:00
parent 44a49d7ac7
commit 3ecb2fc790
8 changed files with 211 additions and 98 deletions

View File

@@ -0,0 +1,19 @@
{
config,
lib,
pkgs,
...
}:
{
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).";
};
};
}