Commit 30736fc4 authored by John Titor's avatar John Titor Committed by Masum Reza
Browse files

nixos/amdvlk: enable 32 bit drivers properly

parent 1f2699e6
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -37,9 +37,13 @@ in
  };

  config = lib.mkIf cfg.enable {
    hardware.graphics = {
    hardware.graphics =
      {
        enable = true;
        extraPackages = [ cfg.package ];
      }
      // lib.optionalAttrs cfg.support32Bit.enable {
        enable32Bit = true;
        extraPackages32 = [ cfg.support32Bit.package ];
      };