From eacc091c520121d40af70bdaa0e2ad872e4d8e57 Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Tue, 4 Mar 2025 23:42:41 -0500 Subject: [PATCH] Removed runtime libraries used for minecraft, now handled in repo with nix-shell --- hosts/nixos/rune/default.nix | 43 ------------------------------------ 1 file changed, 43 deletions(-) diff --git a/hosts/nixos/rune/default.nix b/hosts/nixos/rune/default.nix index 1a8b262..e0f8956 100644 --- a/hosts/nixos/rune/default.nix +++ b/hosts/nixos/rune/default.nix @@ -14,36 +14,6 @@ }: let username = "toph"; - runtimeLibs = with pkgs.stable; [ - ## native versions - glfw3-minecraft - openal - - ## openal - alsa-lib - libjack2 - libpulseaudio - pipewire - - ## glfw - libGL - xorg.libX11 - xorg.libXcursor - xorg.libXext - xorg.libXi - xorg.libXrandr - xorg.libXrender - xorg.libXtst - xorg.libXxf86vm - - udev # oshi - - vulkan-loader # VulkanMod's lwjgl - - freetype - fontconfig - flite - ]; in { imports = lib.flatten [ @@ -71,7 +41,6 @@ in ## Rune Specific ## "hosts/users/${username}" # # Not the best solution but I always have one user so ¯\_(ツ)_/¯ ]) - ]; ## Host Specifications ## @@ -97,20 +66,8 @@ in ranger sshfs wget - - # REMOVE: Same as below - glfw3-minecraft - libglvnd ]; - programs.nix-ld.libraries = runtimeLibs; - - # FIXME: Remove this in favor of dirEnv - ## Libs for Minecraft ## - environment.variables = { - LD_LIBRARY_PATH = lib.makeLibraryPath runtimeLibs; - }; - # https://wiki.nixos.org/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "24.11"; }