2022-12-21 14:18:03 -07:00
|
|
|
{ config, pkgs, lib, ... }: {
|
2022-04-25 21:54:53 -04:00
|
|
|
|
2022-12-21 14:18:03 -07:00
|
|
|
imports = [
|
2023-04-15 10:11:44 -04:00
|
|
|
./chiaki.nix
|
2023-04-19 19:50:10 -04:00
|
|
|
./dwarf-fortress.nix
|
2022-12-21 14:18:03 -07:00
|
|
|
./leagueoflegends.nix
|
|
|
|
./legendary.nix
|
|
|
|
./lutris.nix
|
|
|
|
./minecraft-server.nix
|
2023-06-01 22:39:05 -04:00
|
|
|
./ryujinx.nix
|
2022-12-21 14:18:03 -07:00
|
|
|
./steam.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
options.gaming.enable = lib.mkEnableOption "Enable gaming features.";
|
|
|
|
|
|
|
|
config = lib.mkIf (config.gaming.enable && pkgs.stdenv.isLinux) {
|
2022-04-25 21:54:53 -04:00
|
|
|
hardware.opengl = {
|
|
|
|
enable = true;
|
2023-02-05 17:16:20 -05:00
|
|
|
driSupport = true;
|
2022-04-25 21:54:53 -04:00
|
|
|
driSupport32Bit = true;
|
|
|
|
};
|
2023-02-22 23:45:47 -05:00
|
|
|
programs.gamemode.enable = true;
|
2022-04-25 21:54:53 -04:00
|
|
|
};
|
|
|
|
}
|