feat(hand7s): retroarch init
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
parent
079c55e170
commit
9b487e3e25
1 changed files with 28 additions and 0 deletions
28
hand7s/programs/retroarch.nix
Normal file
28
hand7s/programs/retroarch.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{pkgs, ...}: {
|
||||
programs = {
|
||||
retroarch = {
|
||||
enable = true;
|
||||
|
||||
cores = {
|
||||
"mgba" = {
|
||||
enable = true;
|
||||
package = pkgs.libretro.mgba;
|
||||
};
|
||||
|
||||
"dolphin" = {
|
||||
enable = true;
|
||||
package = pkgs.libretro.dolphin;
|
||||
};
|
||||
};
|
||||
|
||||
settings = {
|
||||
menu_driver = "ozone";
|
||||
menu_show_advanced_settings = toString true;
|
||||
video_driver = "vulkan";
|
||||
video_vsync = toString true;
|
||||
video_fullscreen = toString true;
|
||||
libretro_directory = "~/.config/lib/libretro";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue