10 lines
268 B
Nix
10 lines
268 B
Nix
{inputs}:
|
|
final: prev: {
|
|
steam = prev.steam.override {
|
|
extraLibraries = pkgs: with pkgs; [mimalloc pipewire vulkan-loader wayland wayland-protocols];
|
|
extraProfile = ''
|
|
PATH="$PATH:${inputs.fufexan.packages.${prev.system}.gamescope}/bin"
|
|
'';
|
|
};
|
|
}
|