| 22 Jun 2024 |
aktaboot | (i.e proton-ge) | 09:50:18 |
flameopathic | ay any good way to play roblox ever since they broke grapejuice? would a bottle work? | 18:20:01 |
eljamm | In reply to @flameopathic:matrix.org ay any good way to play roblox ever since they broke grapejuice? would a bottle work? I think you can run the mobile version of Roblox using Waydroid:
https://devforum.roblox.com/t/how-to-play-roblox-on-linux-without-wineproton-no-windows-required/2322766 https://reddit.com/r/SteamDeck/comments/1chmkde/roblox_works_again_on_steamos_via_waydroid/
But I heard that version is limited compared to the desktop one. Aside from this, I personally don't know.
| 18:45:48 |
flameopathic | alright, thanks | 18:47:43 |
| 23 Jun 2024 |
| Jordy joined the room. | 15:46:19 |
| 24 Jun 2024 |
| getpsyched joined the room. | 06:22:47 |
| 25 Jun 2024 |
| axiomss joined the room. | 22:03:06 |
| 26 Jun 2024 |
aidalgol | I'm trying to troubleshoot a crash when I use MangoHUD with a particular Steam game, and the FHS env layer seems to be confusing things. I tried running coredumpctl debug <PID>, and gdb prints a ton of warnings of the form warning: Can't open file /some/path during file-backed mapping note processing, and I get nothing more than memory addresses in the backtrace. | 19:26:05 |
aidalgol | Even if I run coredumpctl via steam-run. | 19:26:23 |
aidalgol | Or are those warnings just a red herring, and the problem is that I'm missing debug symbols? | 19:30:53 |
| 27 Jun 2024 |
| Shaderoit joined the room. | 02:59:51 |
genevieve | So for anyone planning to play FFXIV launch day tomorrow, rather than trying to update the xivlauncher package via overlay, should just running the pre-built executable from the github release with steam-run work? It does seem to work on a basic level but obviously I can't actually launch the game right now | 17:36:12 |
K900 | An overlay is also an option | 17:38:53 |
K900 | Most likely | 17:38:58 |
genevieve | If the update is actually simple that should be fine, I just have no clue about how to update the nuget dependencies | 17:40:26 |
genevieve | https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/xi/xivlauncher/deps.nix | 17:40:26 |
mjm | I’ll probably be trying to overlay, we’ll see how it goes | 17:59:24 |
mjm | genevieve: https://github.com/NixOS/nixpkgs/pull/323006 | 21:08:25 |
genevieve | In reply to @mjm:midna.dev genevieve: https://github.com/NixOS/nixpkgs/pull/323006 :O that was fast, thanks | 22:33:49 |
mjm | no problem, tho others did the actual work. i just found the PR :) | 22:34:14 |
genevieve | users.users.${myUser}.packages =
let
nompkgs = import inputs.nixos-master {
system = "x86_64-linux";
allowUnfree = true;
};
in [ nompkgs.xivlauncher ];
error: Package ‘steam-run’ has an unfree license
I'm kind of surprised this doesn't work, what am I doing wrong here?
| 23:43:15 |
genevieve | NIXPKGS_ALLOW_UNFREE=1 sudo nixos-rebuild boot --flake . --impure
...
error: Package ‘steam-run’ in /nix/store/w5jf3xpdh5mrkjqbplc98j1agbggs2w3-source/pkgs/games/steam/fhsenv.nix:344 has an unfree license (‘unfreeRedistributable’), refusing to evaluate.
OK, now this is quite annoying
| 23:46:35 |
genevieve | Ah, OK: sudo NIXPKGS_ALLOW_UNFREE="1" nixos-rebuild boot --flake . --impure. Still, I'm very confused why that first code snippet doesn't work and would like to know | 23:48:30 |
| 28 Jun 2024 |
mjm | i don't think steam-run is coming from xivlauncher? | 00:29:54 |
mjm | so that config doesn't apply to it | 00:30:01 |
mjm | oh i guess it does | 00:30:23 |
mjm | that's strange then, maybe steam-run is getting pulled in somewhere else? | 00:30:58 |
Atemu | In reply to @genevieve:envs.net Ah, OK: sudo NIXPKGS_ALLOW_UNFREE="1" nixos-rebuild boot --flake . --impure. Still, I'm very confused why that first code snippet doesn't work and would like to know Smells like a sudo quirk | 00:31:23 |
Atemu | It's a crufty tool | 00:31:29 |
mjm | sudo resets the environment, so env vars you set before calling it won't apply | 00:31:56 |