Airradda / extest-nix

This is an unofficial Nix flake for [extest](https://github.com/Supreeeme/extest).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

extest Nix Flake

Overview

This is an unofficial Nix flake for extest. `extest` is a hack which solves the Wayland-specific issue wherein any mouse cursor driven by Steam Input becomes invisible. Read more about the problem in the upstream issue: ValveSoftware/steam-for-linux#4738

Usage

  1. Add this flake to your inputs
    inputs = {
        #...
        extest.url = "github:chaorace/nix-extest";
    }
        
  2. Enable the overlay
     nixpkgs = {
         overlays = [
             inputs.extest.overlays.default
         ];
    };
        
  3. Append the shared object to Steam’s LD_PRELOAD
    (steam.override {
        extraProfile = ''export LD_PRELOAD=${pkgs.extest}/lib/libextest.so:$LD_PRELOAD'';
    })
        

About

This is an unofficial Nix flake for [extest](https://github.com/Supreeeme/extest).


Languages

Language:Nix 100.0%