infrastructure/config/users/kat/gaming.nix
2021-03-03 04:01:28 +00:00

13 lines
359 B
Nix

{ config, lib, pkgs, ... }:
{
config = lib.mkIf (lib.elem "gaming" config.deploy.profiles) {
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
hardware.pulseaudio.support32Bit = true;
home-manager.users.kat = {
home.packages = [ pkgs.lutris pkgs.steam-run ];
};
};
}