diff options
author | Kiskae | 2023-04-01 20:24:02 +0200 |
---|---|---|
committer | GitHub | 2023-04-01 20:24:02 +0200 |
commit | 0491659cd060c6eace115483318f53c8419f9909 (patch) | |
tree | ad773c58de0111cf3a9c8f09c15d8717d7387154 /nixos | |
parent | c0df1f8f413d85b75459f6c629795abb760fc199 (diff) |
nixos/nvidia: use correct attribute
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/hardware/video/nvidia.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/video/nvidia.nix b/nixos/modules/hardware/video/nvidia.nix index 6bbbcc58e98a..592d11d6476b 100644 --- a/nixos/modules/hardware/video/nvidia.nix +++ b/nixos/modules/hardware/video/nvidia.nix @@ -27,7 +27,7 @@ let nvidiaSettings = cfg.nvidiaSettings; busIDType = types.strMatching "([[:print:]]+[\:\@][0-9]{1,3}\:[0-9]{1,2}\:[0-9])?"; - ibtSupport = cfg.open || (nvidia.ibtSupport or false); + ibtSupport = cfg.open || (nvidia_x11.ibtSupport or false); in { |