From 73f91f2237cffb8cb1a9e34fc34aabb8fa0d8434 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Wed, 24 Jun 2026 05:06:54 +0200 Subject: [PATCH] Remove unneeded nixtamal inherit in mesa.nix --- modules/mesa.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mesa.nix b/modules/mesa.nix index 8388614..1e94fd2 100644 --- a/modules/mesa.nix +++ b/modules/mesa.nix @@ -1,4 +1,4 @@ -{ lib, pkgs, functions, isLaptop, nixtamal, ... }: +{ lib, pkgs, functions, isLaptop, ... }: let selected_vkDrivers = [ "amd" /* Needed by steam => */ "microsoft-experimental" ] ++ lib.optional (!isLaptop) "intel";