Files
dotfiles/home-modules/games.nix
Lennart J. Kurzweg (Nx2) b1258be64b minecraft
2025-05-31 15:01:06 +02:00

22 lines
415 B
Nix

{ pkgs-unstable, pkgs, lib, host, ... }:
# lib.mkIf (host == "NxNORTH" || host == "NxACE")
lib.mkIf (host == "NxNORTH")
{
home = {
packages = (with pkgs-unstable; [
protonup
mangohud
prismlauncher
# heroic
mindustry-wayland
]) ++ [ pkgs.heroic ];
sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
};
};
}