mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 07:00:41 +00:00
Add gpu settings
This commit is contained in:
parent
53771e1547
commit
163eafb8f0
6 changed files with 136 additions and 0 deletions
|
@ -14,6 +14,16 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
gpu.type = mkOption {
|
||||
type = with types; nullOr (enum [ "nvidia" "amd" "intel" ]);
|
||||
default = null;
|
||||
description = ''
|
||||
The manifaturer/type of the primary system GPU.
|
||||
|
||||
Allows the correct GPU drivers to be loaded, potentially optimizing video output performance.
|
||||
'';
|
||||
};
|
||||
|
||||
hasTPM = mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue