nix-config/modules/default/nixos/desktop/games/emulation.nix

11 lines
203 B
Nix

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