Dolphin-emu and dolphin-emu-primehack now use maintained mbedtls version 3.6.5 instead of unmaintained mbedtls_2. No longer need to permit insecure packages. Verified both packages build successfully without the workaround.
36 lines
719 B
Nix
36 lines
719 B
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.roles.desktop;
|
|
in
|
|
{
|
|
config = mkMerge [
|
|
(mkIf (cfg.enable && cfg.gaming.enable) {
|
|
environment.systemPackages = with pkgs; [
|
|
lutris
|
|
moonlight
|
|
|
|
# Emulators
|
|
dolphin-emu
|
|
|
|
# Re-enabled in 25.11 after binary build was fixed
|
|
dolphin-emu-primehack
|
|
|
|
# Experimenting with just using the steam version + downloading
|
|
# indiviudal cores
|
|
#retroarch-full
|
|
ryubing
|
|
];
|
|
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
};
|
|
})
|
|
];
|
|
}
|