12 lines
450 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
}
|