nix-config/modules/nixos/desktop/games/emulation.nix
2025-05-30 21:10:10 +02:00

11 lines
202 B
Nix

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