From f75203cc311b092a4c11f909bacd2534a7078c37 Mon Sep 17 00:00:00 2001 From: Manuel Transfeld Date: Mon, 24 Feb 2025 08:48:14 +0100 Subject: [PATCH] common/gpu/nvidia: remove a default value (#1373) https://github.com/NixOS/nixpkgs/pull/326369 has been merged. --- common/gpu/nvidia/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/gpu/nvidia/default.nix b/common/gpu/nvidia/default.nix index df28c06a..281e33f7 100644 --- a/common/gpu/nvidia/default.nix +++ b/common/gpu/nvidia/default.nix @@ -3,6 +3,4 @@ { imports = [ ../24.05-compat.nix ]; services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ]; - # TODO: this will be a default after https://github.com/NixOS/nixpkgs/pull/326369 - hardware.nvidia.modesetting.enable = lib.mkDefault true; }