update vulkan

This commit is contained in:
Odweta
2026-01-21 18:00:52 +01:00
parent 995ad91c0e
commit 722d6219a0
3 changed files with 2 additions and 31 deletions
+2
View File
@@ -2,4 +2,6 @@
{
programs.steam.enable = true;
hardware.cpu.intel.updateMicrocode = true;
hardware.graphics.enable32Bit = true;
}
-1
View File
@@ -5,6 +5,5 @@
./audio.nix
./opengl.nix
./usb.nix
./vulkan.nix
];
}
-30
View File
@@ -1,30 +0,0 @@
{ lib, config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vulkan-tools
libglvnd # modern GL dispatch
lib32.libglvnd # 32-bit GL support
# 32-bit graphics
lib32.libglvnd
lib32.glfw3
lib32.sdl2
lib32.zlib
lib32.pulseaudio
# Optional but useful
lib32.libXrandr
lib32.libXss
lib32.libXi
lib32.libXtst
lib32.libXrender
];
# Enable multilib for 32-bit
nixpkgs.config = {
allowUnfree = true;
i686Support = true;
};
hardware.cpu.intel.updateMicrocode = true;
}