I did notice lutris having its own FHS when upgrading, but aw man this looks pretty dam complicated, I'm like a week old to NixOS I have no idea how imma do this lmao, i did attempt the following
failed attemps
home.packages = with pkgs; [
lutris.overrideAttrs (finalAttrs: previousAttrs: {
multiPkgs = self ++ [(pkgs.runCommand "steamrun-lib" {}
"mkdir $out; ln -s ${pkgs.steam-run.fhsenv}/usr/lib64 $out/lib")];
})
];
and
home.packages = with pkgs; [
lutris.override {
buildFHSEnv = self.buildFHSEnv.override {
multiPkgs = self ++ [(pkgs.runCommand "steamrun-lib" {}
"mkdir $out; ln -s ${pkgs.steam-run.fhsenv}/usr/lib64 $out/lib")];
};
}
];
which obviously didn't work, so yea im kinda lost
I'm also really surprised that lutris' FHS just does not have anything to run native linux game by default