• 2 Posts
  • 8 Comments
Joined 1 year ago
cake
Cake day: July 6th, 2023

help-circle

  • I did both - I have steam and steam-run in environment.systemPackages and I have packages.steam.enable = true;

    Here’s my hardware config:

      hardware = {
        bluetooth.enable = true; # enables support for Bluetooth
        bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
        opengl = {
          enable = true;
          extraPackages = with pkgs; [
            intel-media-driver # LIBVA_DRIVER_NAME=iHD
            intel-media-sdk
            intel-vaapi-driver # For older processors. LIBVA_DRIVER_NAME=i965
            vaapiIntel
            vaapiVdpau
            libvdpau-va-gl
          ];
        };
        pulseaudio = {
          enable = true;
          support32Bit = true;
          extraConfig = "load-module module-combine-sink";
        };
        xpadneo.enable = true;
      };