From 9e916e2818601a70c7e38e81872872620181817f Mon Sep 17 00:00:00 2001 From: 514fpv Date: Thu, 11 Jan 2024 14:15:04 +0800 Subject: [PATCH] global(gui): fix type --- global/gui/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/gui/default.nix b/global/gui/default.nix index 5c573d35..3b2082de 100644 --- a/global/gui/default.nix +++ b/global/gui/default.nix @@ -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"; };