add emulation option

This commit is contained in:
willifan 2025-01-04 00:24:49 +01:00
parent 860af80a0a
commit 7a3c74421c
6 changed files with 12 additions and 2 deletions
modules/default/common/desktop/games

View file

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