dotfiles/os/gaming/default.nix

9 lines
218 B
Nix
Raw Normal View History

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