Created
March 16, 2021 20:09
-
-
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 :).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
]; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<3