Gaming/retroarch: init
This commit is contained in:
parent
63062475e2
commit
b20181aec5
2 changed files with 19 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
||||||
./steam.nix
|
./steam.nix
|
||||||
./mangohud.nix
|
./mangohud.nix
|
||||||
./rpcs3.nix
|
./rpcs3.nix
|
||||||
|
./retroarch.nix
|
||||||
];
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
heroic
|
heroic
|
||||||
|
|
|
||||||
18
roles/gaming/programs/retroarch.nix
Normal file
18
roles/gaming/programs/retroarch.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
)];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue