Dolphin Emulator: Difference between revisions

From NixOS Wiki
imported>Mic92
Created page with "= Dolphin Emulator = Dolphin is a Nintendo GameCube and Wii emulator, currently supporting the x86_64 and AArch64 architectures. Dolphin is available for Linux, macOS, Window..."
 
imported>Nix
m add Software/Applications subcategory
Line 13: Line 13:
}
}
</nowiki>}}
</nowiki>}}
[[Category:Applications]]

Revision as of 05:44, 20 September 2021

Dolphin Emulator

Dolphin is a Nintendo GameCube and Wii emulator, currently supporting the x86_64 and AArch64 architectures. Dolphin is available for Linux, macOS, Windows, and Android. It is a free and open source, community-developed project. Dolphin was the first GameCube and Wii emulator, and currently the only one capable of playing commercial games.

Use with controllers

To use GameCube controllers NixOS udev rules are required.

/etc/nixos/configuration.nix
{ pkgs, ... }: 
{
  services.udev.packages = [ pkgs.dolphinEmu ];
}