8 lines
208 B
Nix
8 lines
208 B
Nix
|
{ 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
|
||
|
};
|
||
|
}
|