mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
21 lines
412 B
Nix
21 lines
412 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
imports = [
|
|
./leagueoflegends.nix
|
|
./legendary.nix
|
|
./lutris.nix
|
|
./minecraft-server.nix
|
|
./steam.nix
|
|
];
|
|
|
|
options.gaming.enable = lib.mkEnableOption "Enable gaming features.";
|
|
|
|
config = lib.mkIf (config.gaming.enable && pkgs.stdenv.isLinux) {
|
|
hardware.opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
};
|
|
}
|