nix/modules/nixos/workstation/desktop/gaming/default.nix
Ameya Shenoy 4998e822a7 feat: init
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2024-11-11 01:48:40 +05:30

12 lines
450 B
Nix

{ 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
];
};
};
}