Skip to content

Instantly share code, notes, and snippets.

@confususs
Created March 16, 2021 20:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save confususs/50e04bdfce97f1513db34cfd7f872923 to your computer and use it in GitHub Desktop.
Save confususs/50e04bdfce97f1513db34cfd7f872923 to your computer and use it in GitHub Desktop.
Add the following to your configuration.nix to be able to play Loop Hero on NixOS :).
# Below patches steam with the right libraries so you can play
# Loop Hero. Have fun!
nixpkgs.config.packageOverrides = pkgs: {
steam = pkgs.steam.override {
extraPkgs = pkgs: [
pkgs.openssl_1_1
pkgs.libnghttp2
pkgs.libidn2
pkgs.rtmpdump
pkgs.libpsl
];
};
};
@neeasade
Copy link

<3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment