Files
dotfiles/home-modules/games.nix
Lennart J. Kurzweg (Nx2) 77e9aa4ddd games
2024-11-14 01:21:34 +01:00

19 lines
315 B
Nix
Executable File

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