infrastructure/config/users/kat/gaming.nix
kat witch fdf7cb9e98 Reformat. Small changes.
Ran nixfmt on the whole project. Added an alias for doing that. Changed
some SSH aliases.
2021-02-22 05:40:19 +00:00

13 lines
364 B
Nix

{ config, lib, pkgs, ... }:
{
config = lib.mkIf (lib.elem "gaming" config.meta.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 ];
};
};
}