flake/nixos/profiles/common/opt-in/gaming/home/default.nix

16 lines
299 B
Nix
Raw Normal View History

2024-06-05 10:19:23 +00:00
{pkgs, ...}: {
2024-03-26 08:49:35 +00:00
programs.mangohud.enable = true;
2024-02-29 19:17:14 +00:00
2024-06-05 10:19:23 +00:00
home.packages = with pkgs; [
(prismlauncher.override {glfw = glfw-wayland-minecraft;})
2024-07-09 07:14:46 +00:00
steam
2024-06-05 10:19:23 +00:00
mumble
osu-lazer-bin
];
2024-07-09 07:14:46 +00:00
home.sessionVariables = {
# https://github.com/ppy/osu-framework/pull/6292
"OSU_SDL3" = "1";
};
}