update vulkan

This commit is contained in:
Odweta
2026-01-21 17:49:15 +01:00
parent 54affdb999
commit 68b022b9af
2 changed files with 23 additions and 0 deletions
+1
View File
@@ -5,5 +5,6 @@
./audio.nix ./audio.nix
./opengl.nix ./opengl.nix
./usb.nix ./usb.nix
./vulkan.nix
]; ];
} }
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, ... }:
{
hardware.cpu.intel.updateMicrocode = true;
environment.systemPackages = with pkgs; [
vulkan-tools
lib32Mesa
lib32VulkanIntel
];
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
my32bit = pkgs.buildEnv {
name = "my32bit";
paths = [
pkgs.lib32Mesa
pkgs.lib32VulkanIntel
];
};
};
};
}