Compare commits

..

3 commits

Author SHA1 Message Date
Aaron Honeycutt
4ef0877427 Upload New File 2025-03-01 03:11:12 +00:00
Aaron Honeycutt
da7ad879e6 Add new directory 2025-03-01 03:11:00 +00:00
Aaron Honeycutt
ffa179d708 Add new directory 2025-03-01 03:10:53 +00:00
3 changed files with 11 additions and 0 deletions

0
software/gaming/.gitkeep Normal file
View file

View file

View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
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
'';
}