Files
dotfiles/home-modules/games.nix
Lennart J. Kurzweg (Nx2) c621faf09a games syntac fix
2025-11-18 16:34:35 +01:00

20 lines
511 B
Nix

{ pkgs, ... }@all: with all; {
home = {
packages = (with pkgs; [
unstable.protonup-ng
unstable.mangohud
]) ++ (if hyper.host == "NxNORTH" then (with pkgs; [
unstable.prismlauncher
heroic
# mindustry-wayland
]) else if hyper.host == "NxXPS" then (with pkgs; [
heroic
]) else if hyper.host == "NxACE" then (with pkgs; [
heroic
]) else []);
sessionVariables.STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
};
}