diff options
| author | Mel <mel@rnrd.eu> | 2026-04-07 01:36:41 +0200 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2026-04-07 01:41:22 +0200 |
| commit | 068ca4923b4def8885a49a7d54eae0909fadd498 (patch) | |
| tree | 64c6913816c3e5f5e81ccf2423e8fed45280f0e2 /machines/wolfram | |
| parent | e57e49cce6243d29437d55496c7d42037aa5d4be (diff) | |
| download | minerals-068ca4923b4def8885a49a7d54eae0909fadd498.tar.zst minerals-068ca4923b4def8885a49a7d54eae0909fadd498.zip | |
Move Wolfram Mesa and associated Intel drivers to unstable
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines/wolfram')
| -rw-r--r-- | machines/wolfram/devices.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/machines/wolfram/devices.nix b/machines/wolfram/devices.nix index 3c5dd01..5a54681 100644 --- a/machines/wolfram/devices.nix +++ b/machines/wolfram/devices.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, unstablePkgs, ... }: { # boot settings @@ -40,10 +40,16 @@ graphics = { enable = true; enable32Bit = true; - extraPackages = with pkgs; [ + + # use the most up-to-date mesa we can get from nixos, + # as the intel arc b570 drivers are still in rapid development, + # and any changes could improve stability and performance drastically. + package = unstablePkgs.mesa; + package32 = unstablePkgs.pkgsi686Linux.mesa; + + extraPackages = with unstablePkgs; [ vpl-gpu-rt intel-media-driver - intel-vaapi-driver intel-compute-runtime intel-ocl ]; |
