fix(gui): fix type
This commit is contained in:
parent
a9a069ca89
commit
b4c0f70e64
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue