8 lines
210 B
Nix
8 lines
210 B
Nix
{ config, lib, inputs, pkgs, ... }: {
|
|
|
|
environment.variables = {
|
|
__GL_SHADER_DISK_CACHE_SIZE = "12000000000";
|
|
VK_LAYER_PATH = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
|
};
|
|
}
|