nix-config/modules/default/common/desktop/games/emulation.nix
2025-01-04 00:36:34 +01:00

10 lines
194 B
Nix

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