1
0
Fork 0
puter/profiles/gaming/retroarch.nix

22 lines
310 B
Nix
Raw Normal View History

2025-07-13 22:45:42 +02:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.profiles.gaming;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages =
let
retroarch = pkgs.retroarch.withCores (cores: [
cores.parallel-n64
cores.dolphin
]);
in
[ retroarch ];
};
}