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