dotfiles/os/gaming/default.nix

8 lines
208 B
Nix
Raw Normal View History

2023-12-02 21:50:59 +01:00
{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.frogeye.gaming {
programs.steam.enable = true;
hardware.opengl.driSupport32Bit = true; # Enables support for 32bit libs that steam uses
};
}