From b0ebe45610fff70bd8d01e566acc1210bd89a72b Mon Sep 17 00:00:00 2001 From: ChUrl Date: Fri, 12 May 2023 18:25:33 +0200 Subject: [PATCH] Enable cemu + wiiu-downloader --- home/christoph/nixinator/default.nix | 1 + home/modules/gaming/default.nix | 2 ++ home/modules/gaming/options.nix | 1 + 3 files changed, 4 insertions(+) diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index 1e916a77..f5c60120 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -71,6 +71,7 @@ rec { prism.enable = true; bottles.enable = false; + cemu.enable = true; # TODO: Webcord # discordChromium.enable = false; # discordElectron.enable = false; # This is the nixpkgs version, prefer the one from flatpak module diff --git a/home/modules/gaming/default.nix b/home/modules/gaming/default.nix index 9792218f..1aa738b2 100644 --- a/home/modules/gaming/default.nix +++ b/home/modules/gaming/default.nix @@ -58,6 +58,8 @@ in { # (optionals cfg.steam.enable [ protontricks ]) # (optionals cfg.dwarffortress.enable [dwarf-fortress-packages.dwarf-fortress-full]) + + (optionals cfg.cemu.enable [cemu cdecrypt wiiu-downloader]) ]; # This doesn't work because steam doesn't detect symlinked skins, files have to be copied diff --git a/home/modules/gaming/options.nix b/home/modules/gaming/options.nix index 17c7cb93..201b8469 100644 --- a/home/modules/gaming/options.nix +++ b/home/modules/gaming/options.nix @@ -12,6 +12,7 @@ with mylib.modules; { prism.enable = mkEnableOpt "PrismLauncher for Minecraft (flatpak)"; bottles.enable = mkEnableOpt "Bottles (flatpak)"; # dwarffortress.enable = mkEnableOpt "Dwarf Fortress"; + cemu.enable = mkEnableOpt "Cemu (nixpkgs)"; steam = { enable = mkEnableOpt "Steam (flatpak)";