MultiMC: Difference between revisions

imported>Leo60228
Expand on MSA instructions
imported>LegitMagic
m PolyMC is now marked as insecure and PrismLauncher is the replacement. See nixpkgs issue 196480
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== NOTE ==
Nixpkgs currently packages PrismLauncher, a fork of MultiMC, which currently does not require you, but does allow you, to obtain your own client ID. This information is provided mainly for historical interest.
=== Using a Microsoft account ===
=== Using a Microsoft account ===


Line 15: Line 20:
(multimc.override { msaClientID = "00000000-0000-0000-0000-000000000000"; })
(multimc.override { msaClientID = "00000000-0000-0000-0000-000000000000"; })
</syntaxhighlight>
</syntaxhighlight>
If you use home-manager, you can use the following snippet in your home-manager config:
<syntaxhighlight lang="nix">
  nixpkgs.overlays = [ (self: super: {
    multimc = super.multimc.override {
      msaClientID = "<your application id>";
  };
}
) ];
</syntaxhighlight>
[[Category:Applications]]