fix(gui): add default null value to type

This commit is contained in:
514fpv 2024-01-11 14:03:36 +08:00
parent b14dcf4a39
commit a468d03715
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -17,7 +17,8 @@ in {
enable = mkEnableOption "various setup required for GUI and support software";
session = mkEnableOption "software required for a graphical session" // { default = true; };
type = mkOption {
type = with types; enum [ "intel" "amdgpu" "nvidia" "prime" ];
type = with types; nullOr enum [ "intel" "amdgpu" "nvidia" "prime" ];
default = null;
description = "type of graphics acceleration used";
};
arc = mkOption {