1
Fork 0
satellite/modules/applications/steam.nix

9 lines
262 B
Nix
Raw Normal View History

2020-11-09 16:13:52 +01:00
{ pkgs, ... }: {
# 32 bit stuff
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
hardware.pulseaudio.support32Bit = true;
home-manager.users.adrielus.home.packages = with pkgs; [ steam ];
}