zenix: add retroarch and warpinator

This commit is contained in:
Tristan 2025-11-03 15:39:47 +00:00
parent ece1abdd3e
commit ba4d4bba1b
2 changed files with 17 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{...}: {
{pkgs, ...}: {
allowUnfreePkgNames = [
"steam"
"steam-unwrapped"
@ -27,4 +27,15 @@
capSysNice = true;
};
programs.gamemode.enable = true;
nixpkgs.config.permittedInsecurePackages = [
"mbedtls-2.28.10"
];
services.xserver.desktopManager.retroarch = {
enable = true;
package = pkgs.retroarch.withCores (cores:
with cores; [
bsnes
beetle-psx-hw
]);
};
}