change some game stuff

This commit is contained in:
Dmitriy Kholkin 2024-03-04 00:01:23 +03:00
parent ee592bc3b9
commit c262531bd5
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 8 additions and 2 deletions

View File

@ -1,14 +1,19 @@
{ config, pkgs, ... }: {
{ config, pkgs, lib, ... }: {
boot.kernel.sysctl."vm.max_map_count" = lib.mkForce 524288;
home-manager.users.${config.mainuser} = {
home.packages = with pkgs; [
(retroarch.override { cores = with libretro; [ genesis-plus-gx dosbox ]; })
ryujinx
citra-canary
# pcsx2
# rpcs3
];
};
persist.state.homeDirectories = [
".config/retroarch"
".config/citra-emu"
".config/PCSX2"
".config/retroarch"
".config/rpcs3"
".config/Ryujinx"
];
}

View File

@ -15,5 +15,6 @@
# Native games config
".config/WarThunder"
".local/share/BeamNG.drive"
".local/share/Transistor"
];
}