Fix spelling mistake

This commit is contained in:
BuyMyMojo 2025-04-05 10:41:32 +11:00
parent 823361a999
commit 9d94a103c1
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
2 changed files with 2 additions and 2 deletions

View file

@ -1,51 +0,0 @@
{
config,
pkgs,
unstable,
inputs,
lib,
...
}:
let
withExtraPackages =
pkg: extraPackages:
pkgs.runCommand "${pkg.name}-wrapped" { nativeBuildInputs = [ pkgs.makeWrapper ]; } ''
for exe in ${lib.getBin pkg}/bin/*; do
makeWrapper $exe $out/bin/$(basename $exe) --prefix PATH : ${lib.makeBinPath extraPackages}
done
'';
in
{
# === Java versions for MC ===
home.file."jdks/zulujdk8".source = pkgs.zulu8;
home.file."jdks/zulujdk17".source = pkgs.zulu17;
home.file."jdks/zulujdk23".source = pkgs.zulu23;
# === Java versions for MC ===
home.packages =
with unstable;
with inputs;
[
# === Minecraft related ===
unstable.modrinth-app
unstable.prismlauncher
# === Minecraft related ===
unstable.steamtinkerlaunch
pkgs.heroic-unwrapped
unstable.ludusavi
# === Game perf ===
unstable.mangojuice
unstable.goverlay
# === Game perf ===
];
programs.mangohud = {
enable = true;
enableSessionWide = true;
package = unstable.mangohud;
};
}