nix-config/modules/default/nixos/desktop/games/emulation.nix
2025-02-09 16:55:54 +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
];
}