From 156e6799b49533a560167d16b1d493e176afb12f Mon Sep 17 00:00:00 2001 From: Angel J <78835633+iamanaws@users.noreply.github.com> Date: Sun, 5 Apr 2026 20:50:04 -0700 Subject: [PATCH] nixos/nvidia: fix videoAcceleration option description --- nixos/modules/hardware/video/nvidia.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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; + }; }; };