dotfiles/modules/nixos/gaming/default.nix

23 lines
466 B
Nix
Raw Normal View History

2022-12-21 21:18:03 +00:00
{ config, pkgs, lib, ... }: {
2022-04-26 01:54:53 +00:00
2022-12-21 21:18:03 +00:00
imports = [
2023-04-15 14:11:44 +00:00
./chiaki.nix
2022-12-21 21:18:03 +00:00
./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) {
2022-04-26 01:54:53 +00:00
hardware.opengl = {
enable = true;
2023-02-05 22:16:20 +00:00
driSupport = true;
2022-04-26 01:54:53 +00:00
driSupport32Bit = true;
};
2023-02-23 04:45:47 +00:00
programs.gamemode.enable = true;
2022-04-26 01:54:53 +00:00
};
}