dotfiles/modules/gaming/default.nix

12 lines
187 B
Nix
Raw Normal View History

2022-04-26 01:54:53 +00:00
{ config, ... }: {
2022-04-26 23:59:55 +00:00
imports = [ ./leagueoflegends.nix ./lutris.nix ./steam.nix ];
2022-04-26 01:54:53 +00:00
config = {
hardware.opengl = {
enable = true;
driSupport32Bit = true;
};
};
}