fix(gui): fix type

This commit is contained in:
514fpv 2024-01-11 14:15:04 +08:00
parent a9a069ca89
commit b4c0f70e64
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -17,7 +17,7 @@ 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; nullOr enum [ "intel" "amdgpu" "nvidia" "prime" ];
type = with types; nullOr (enum [ "intel" "amdgpu" "nvidia" "prime" ]);
default = null;
description = "type of graphics acceleration used";
};