remove gamesand

This commit is contained in:
xunuwu 2025-05-28 06:19:12 +02:00
parent f65a6d0dd5
commit 05deb12d98
3 changed files with 0 additions and 30 deletions

View file

@ -1,8 +1,3 @@
{ {
pkgs,
self,
...
}: {
home.packages = [self.packages.${pkgs.system}.gamesand];
programs.mangohud.enable = true; programs.mangohud.enable = true;
} }

View file

@ -1,7 +1,6 @@
{pkgs, ...}: { {pkgs, ...}: {
packages = { packages = {
jdnbtexplorer = pkgs.qt6Packages.callPackage ./jdnbtexplorer {}; jdnbtexplorer = pkgs.qt6Packages.callPackage ./jdnbtexplorer {};
gamesand = pkgs.callPackage ./gamesand {};
binaryninja-personal = pkgs.qt6Packages.callPackage ./binaryninja-personal {}; binaryninja-personal = pkgs.qt6Packages.callPackage ./binaryninja-personal {};
krunker = pkgs.callPackage ./krunker {}; krunker = pkgs.callPackage ./krunker {};
ida-pro = pkgs.callPackage ./ida-pro {}; ida-pro = pkgs.callPackage ./ida-pro {};

View file

@ -1,24 +0,0 @@
{
steam-fhsenv-without-steam,
symlinkJoin,
}:
symlinkJoin {
name = "gamesand";
paths = [
(steam-fhsenv-without-steam.override
{
extraBwrapArgs = [
"--bind ./files /game/files"
"--bind ./appdata /home/$USER"
"--chdir /game"
"--ro-bind ./start.sh /game/start.sh"
"--cap-add ALL"
];
})
.run
];
postBuild = ''
mv $out/bin/steam-run $out/bin/gamesand
sed -i 's/ignored=(\/nix \/dev \/proc \/etc )/ignored=(\/nix \/dev \/proc \/etc \/home )/' $out/bin/gamesand
'';
}