diff --git a/nixos/modules/hardware/video/nvidia.nix b/nixos/modules/hardware/video/nvidia.nix index 7d0a53370008..d8c42c128438 100644 --- a/nixos/modules/hardware/video/nvidia.nix +++ b/nixos/modules/hardware/video/nvidia.nix @@ -329,13 +329,9 @@ in ''; }; - videoAcceleration = - (lib.mkEnableOption '' - Whether video acceleration (VA-API) should be enabled. - '') - // { - default = true; - }; + videoAcceleration = lib.mkEnableOption "video acceleration (VA-API)" // { + default = true; + }; }; };