mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
23 lines
466 B
Nix
23 lines
466 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
imports = [
|
|
./chiaki.nix
|
|
./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;
|
|
};
|
|
programs.gamemode.enable = true;
|
|
};
|
|
}
|