This commit is contained in:
dusk 2022-08-11 07:13:11 +03:00
parent 9d7033cd0f
commit b9d1794747
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
2 changed files with 1 additions and 5 deletions

View File

@ -22,7 +22,7 @@
( (
name: _: final: prev: { name: _: final: prev: {
${l.removeSuffix ".nix" name} = ${l.removeSuffix ".nix" name} =
prev.callPackage final.callPackage
"${./pkgs}/${name}" "${./pkgs}/${name}"
{inherit inputs tlib;}; {inherit inputs tlib;};
} }

View File

@ -1,9 +1,5 @@
final: prev: { final: prev: {
steam = prev.steam.override { steam = prev.steam.override {
extraLibraries = pkgs: with pkgs; [mimalloc pipewire vulkan-loader wayland wayland-protocols]; extraLibraries = pkgs: with pkgs; [mimalloc pipewire vulkan-loader wayland wayland-protocols];
# extraProfile = ''
# unset VK_ICD_FILENAMES
# export VK_ICD_FILENAMES="/run/opengl-driver/share/vulkan/icd.d:/run/opengl-driver-32/share/vulkan/icd.d"
# '';
}; };
} }