fix(tazjin/nixos): fix 32-bit support for games
Change-Id: I04cb7c448228771536f9f87155183bdaa8faf4e8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8768 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
d5748475d8
commit
5753e2393a
2 changed files with 5 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -97,6 +97,8 @@ lib.fix (self: {
|
|||
|
||||
opengl = {
|
||||
enable = true;
|
||||
driSupport32Bit = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
vaapiVdpau
|
||||
libvdpau-va-gl
|
||||
|
@ -166,5 +168,7 @@ lib.fix (self: {
|
|||
# as I do anything stressful to the machine
|
||||
systemd.services.systemd-oomd.enable = lib.mkForce false;
|
||||
|
||||
environment.systemPackages = [ pkgs.vulkan-tools ];
|
||||
|
||||
system.stateVersion = "20.09";
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue