nix/modules/nixos/workstation/desktop/gaming/default.nix

13 lines
450 B
Nix
Raw Normal View History

{ lib, config, pkgs, ... }: {
config = lib.mkIf config.snowflake.workstation.isGamingMachine {
environment = {
systemPackages = with pkgs; [
# gaming
bottles # wrapper over wine to wun Windows software and games on Linux
heroic # games launcher for GOG, Amazon and Epic Games
mangohud # Vulkan and OpenGL overlay for monitoring FPS, temperatures, CPU/GPU load and more during gaming
];
};
};
}