fix(gui): add default null value to type
This commit is contained in:
parent
b14dcf4a39
commit
a468d03715
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue