Gaming/retroarch: init

This commit is contained in:
Toast 2023-12-30 20:39:21 +01:00
parent 63062475e2
commit b20181aec5
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
home-manager.users.toast = {
home = {
packages = [(
pkgs.retroarch.override {
cores = with pkgs.libretro; [
snes9x
];
settings = {
video_driver = "vulkan";
video_fullscreen = "true";
};
}
)];
};
};
}