global(gui): fix type
This commit is contained in:
parent
4cdc472709
commit
9e916e2818
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ in {
|
||||||
enable = mkEnableOption "various setup required for GUI and support software";
|
enable = mkEnableOption "various setup required for GUI and support software";
|
||||||
session = mkEnableOption "software required for a graphical session" // { default = true; };
|
session = mkEnableOption "software required for a graphical session" // { default = true; };
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = with types; nullOr enum [ "intel" "amdgpu" "nvidia" "prime" ];
|
type = with types; nullOr (enum [ "intel" "amdgpu" "nvidia" "prime" ]);
|
||||||
default = null;
|
default = null;
|
||||||
description = "type of graphics acceleration used";
|
description = "type of graphics acceleration used";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue