MultiMC: Difference between revisions

imported>Nix
m add Software/Applications subcategory
imported>Kasimon
Add home-manager example
Line 14: Line 14:
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
(multimc.override { msaClientID = "00000000-0000-0000-0000-000000000000"; })
(multimc.override { msaClientID = "00000000-0000-0000-0000-000000000000"; })
</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>
</syntaxhighlight>


[[Category:Applications]]
[[Category:Applications]]