mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
30 lines
491 B
Nix
30 lines
491 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
imports = [
|
|
./chiaki.nix
|
|
./dwarf-fortress.nix
|
|
./legendary.nix
|
|
./lutris.nix
|
|
./minecraft-server.nix
|
|
./ryujinx.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;
|
|
};
|
|
}
|