nix-config/modules/default/common/desktop/emulation.nix
2024-12-27 15:08:02 +01:00

10 lines
183 B
Nix

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