nix-config/modules/default/nixos/desktop/games/emulation.nix
willifan 37173ae905 revert 2ddbe9d227
revert TEMP remove lime3ds because of build failure
2025-03-23 18:30:15 +01:00

11 lines
202 B
Nix

{ lib, config, pkgs, ... }:
lib.mkIf config.desktop.emulation.enable {
environment.systemPackages = with pkgs; [
melonDS
dolphin-emu
lime3ds
cemu
yuzu
steam-rom-manager
];
}