diff --git a/software/gaming/.gitkeep b/software/gaming/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/software/gaming/BAR/.gitkeep b/software/gaming/BAR/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/software/gaming/BAR/shell.nix b/software/gaming/BAR/shell.nix new file mode 100644 index 0000000..aa8d822 --- /dev/null +++ b/software/gaming/BAR/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + buildInputs = with pkgs; [ + appimage-run + openal + ]; + shellHook = '' + export LD_LIBRARY_PATH="${pkgs.openal}/lib:$LD_LIBRARY_PATH" + appimage-run Beyond-All-Reason-1.2988.0.AppImage + ''; +}