Minecraft: Difference between revisions
I made a minecraft page showing different clients, installation and troubleshooting. Note: We should make a seperate page for servers e.g minecraft:servers? |
Fixed errors |
||
| Line 1: | Line 1: | ||
[https://www.minecraft.net/about-minecraft Minecraft] is a sandbox game about building, surviving, fighting, and being creative, developed by Mojang Studios.<ref>[https://www.minecraft.net/en-us/about-minecraft https://www.minecraft.net/about-minecraft]</ref> | [https://www.minecraft.net/about-minecraft Minecraft] is a sandbox game about building, surviving, fighting, and being creative, developed by Mojang Studios.<ref>[https://www.minecraft.net/en-us/about-minecraft https://www.minecraft.net/about-minecraft]</ref> | ||
[https://www.minecraft.net/about-minecraft Minecraft] has two variants: "Minecraft: Java Edition" and "Minecraft: Bedrock Edition". | [https://www.minecraft.net/about-minecraft Minecraft] has two variants: "Minecraft: Java Edition" and "Minecraft: Bedrock Edition". | ||
| Line 8: | Line 7: | ||
== Launchers == | == Launchers == | ||
'''Offical Minecraft Launcher:''' [https://www.minecraft.net/download Website] — [https://search.nixos.org/packages?show=minecraft Package/pkgs.minecraft] | '''Offical Minecraft Launcher:''' [https://www.minecraft.net/download Website] — [https://search.nixos.org/packages?show=minecraft Package/pkgs.minecraft] {{note|1.19 or higher are not working, using alternative clients is strongly recommended.}} | ||
'''Prismlauncher:''' A free, open source launcher. [https://prismlauncher.org/ Website] — [https://search.nixos.org/packages?show=prismlauncher Package/pkgs.prismlauncher] | '''Prismlauncher:''' A free, open source launcher. [https://prismlauncher.org/ Website] — [https://search.nixos.org/packages?show=prismlauncher Package/pkgs.prismlauncher] | ||
| Line 25: | Line 24: | ||
pkgs.<LAUNCHER> | pkgs.<LAUNCHER> | ||
]; | ]; | ||
</syntaxhighlight>Alternatively, the package can be installed per-user with <code>users.users.<USERNAME>.packages</code> or [[home-manager]] | </syntaxhighlight>Alternatively, the package can be installed per-user with <code>users.users.<USERNAME>.packages</code> or [[home-manager]]. | ||
For | For nix native, use:<syntaxhighlight lang="nix"> | ||
environment.systemPackages = [ | |||
pkgs.<LAUNCHER> | pkgs.<LAUNCHER> | ||
]; | ]; | ||
</syntaxhighlight>For home-manager, use:<syntaxhighlight lang="nix"> | </syntaxhighlight> | ||
For home-manager, use:<syntaxhighlight lang="nix"> | |||
home.packages = [ | home.packages = [ | ||
pkgs.<LAUNCHER> | pkgs.<LAUNCHER> | ||